blob: 6bd2fa7d73b840d762a29f74f0c751bd81403418 [file] [log] [blame]
Adam Tkacb10489b2010-04-23 14:16:04 +00001/*
2 * Copyright (C) 2004 Red Hat Inc.
3 * Copyright (C) 2005 Martin Koegler
4 * Copyright (C) 2010 TigerVNC Team
5 *
6 * This is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This software is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this software; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
20 */
21
22#ifdef HAVE_CONFIG_H
23#include <config.h>
24#endif
25
26#ifdef HAVE_GNUTLS
27
28#include <rfb/CSecurityTLS.h>
29
30
31using namespace rfb;
32
33CSecurityTLS::CSecurityTLS() : anon_cred(0)
34{
35}
36
37CSecurityTLS::~CSecurityTLS()
38{
39 shutdown();
40 if (anon_cred)
41 gnutls_anon_free_client_credentials (anon_cred);
42}
43
44
45void CSecurityTLS::freeResources()
46{
47 if (anon_cred)
48 gnutls_anon_free_client_credentials(anon_cred);
49 anon_cred=0;
50 }
51
52void CSecurityTLS::setParam(gnutls_session session)
53{
54 int kx_priority[] = { GNUTLS_KX_ANON_DH, 0 };
55 gnutls_kx_set_priority(session, kx_priority);
56
57 gnutls_anon_allocate_client_credentials(&anon_cred);
58 gnutls_credentials_set(session, GNUTLS_CRD_ANON, anon_cred);
59}
60
61void CSecurityTLS::checkSession(gnutls_session session)
62{
63
64}
65
66#endif /* HAVE_GNUTLS */