1 /*****************************************************************************
2 * vlc_tls.h: Transport Layer Security API
3 *****************************************************************************
4 * Copyright (C) 2004-2011 RĂ©mi Denis-Courmont
5 * Copyright (C) 2005-2006 VLC authors and VideoLAN
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20 *****************************************************************************/
27 * This file defines Transport Layer Security API (TLS) in vlc
30 # include <vlc_network.h>
32 typedef struct vlc_tls vlc_tls_t
;
33 typedef struct vlc_tls_creds vlc_tls_creds_t
;
42 struct virtual_socket_t sock
;
45 VLC_API vlc_tls_t
*vlc_tls_ClientSessionCreate (vlc_tls_creds_t
*, int fd
,
46 const char *host
, const char *service
,
47 const char *const *alpn
, char **alp
);
48 vlc_tls_t
*vlc_tls_SessionCreate (vlc_tls_creds_t
*, int fd
, const char *host
,
49 const char *const *alpn
);
50 int vlc_tls_SessionHandshake (vlc_tls_t
*, const char *host
, const char *serv
,
51 char ** /*restrict*/ alp
);
52 VLC_API
void vlc_tls_SessionDelete (vlc_tls_t
*);
54 /* NOTE: It is assumed that a->sock.p_sys = a */
55 # define tls_Send( a, b, c ) (((vlc_tls_t *)a)->sock.pf_send (a, b, c))
57 # define tls_Recv( a, b, c ) (((vlc_tls_t *)a)->sock.pf_recv (a, b, c))
60 /** TLS credentials (certificate, private and trust settings) */
68 int (*open
) (vlc_tls_creds_t
*, vlc_tls_t
*, int fd
, const char *host
,
69 const char *const *alpn
);
70 int (*handshake
) (vlc_tls_t
*, const char *host
, const char *service
,
71 char ** /*restrict*/ alp
);
72 void (*close
) (vlc_tls_t
*);
75 VLC_API vlc_tls_creds_t
*vlc_tls_ClientCreate (vlc_object_t
*);
76 vlc_tls_creds_t
*vlc_tls_ServerCreate (vlc_object_t
*,
77 const char *cert
, const char *key
);
78 VLC_API
void vlc_tls_Delete (vlc_tls_creds_t
*);