tls.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tls.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: httpd.c 8263 2004-07-24 09:06:58Z courmisch $
  6.  *
  7.  * Authors: Remi Denis-Courmont <courmisch@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <stdlib.h>
  24. #include <vlc/vlc.h>
  25. #include "vlc_tls.h"
  26. /*
  27.  * TODO:
  28.  * - client side stuff,
  29.  * - server-side client cert validation,
  30.  * - client-side server cert validation (?).
  31.  */
  32. /*****************************************************************************
  33.  * tls_ServerCreate:
  34.  *****************************************************************************
  35.  * Allocates a whole server's TLS credentials.
  36.  * Returns NULL on error.
  37.  *****************************************************************************/
  38. tls_server_t *
  39. tls_ServerCreate( vlc_object_t *p_this, const char *psz_cert,
  40.                   const char *psz_key )
  41. {
  42.     tls_t *p_tls;
  43.     tls_server_t *p_server;
  44.     p_tls = vlc_object_create( p_this, VLC_OBJECT_TLS );
  45.     vlc_object_attach( p_tls, p_this );
  46.     p_tls->p_module = module_Need( p_tls, "tls", 0, 0 );
  47.     if( p_tls->p_module != NULL )
  48.     {
  49.         if( psz_key == NULL )
  50.             psz_key = psz_cert;
  51.         p_server = __tls_ServerCreate( p_tls, psz_cert, psz_key );
  52.         if( p_server != NULL )
  53.         {
  54.             msg_Dbg( p_this, "TLS/SSL provider initialized" );
  55.             return p_server;
  56.         }
  57.         else
  58.             msg_Err( p_this, "TLS/SSL provider error" );
  59.         module_Unneed( p_tls, p_tls->p_module );
  60.     }
  61.     else
  62.         msg_Err( p_this, "TLS/SSL provider not found" );
  63.     vlc_object_detach( p_tls );
  64.     vlc_object_destroy( p_tls );
  65.     return NULL;
  66. }
  67. /*****************************************************************************
  68.  * tls_ServerDelete:
  69.  *****************************************************************************
  70.  * Releases data allocated with tls_ServerCreate
  71.  *****************************************************************************/
  72. void
  73. tls_ServerDelete( tls_server_t *p_server )
  74. {
  75.     tls_t *p_tls = p_server->p_tls;
  76.     __tls_ServerDelete( p_server );
  77.     module_Unneed( p_tls, p_tls->p_module );
  78.     vlc_object_detach( p_tls );
  79.     vlc_object_destroy( p_tls );
  80. }