2 Copyright (C) 2012-2016 Ben Kibbey <bjk@luxsci.net>
4 This file is part of libpwmd.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 This library 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 GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
25 #include <gnutls/gnutls.h>
26 #include <gnutls/x509.h>
37 gnutls_session_t session
;
38 gnutls_certificate_credentials_t x509
;
44 ssize_t
tls_write_hook (pwm_t
*, assuan_fd_t fd
, const void *data
, size_t len
);
45 ssize_t
tls_read_hook (pwm_t
*, assuan_fd_t fd
, void *data
, size_t len
);
46 void tls_free (pwm_t
*);
47 gpg_error_t
tls_parse_url (const char *str
, char **host
, int *port
);
48 gpg_error_t
tls_connect (pwm_t
* pwm
, const char *host
, int port
,
49 const char *cert
, const char *key
,
50 const char *cacert
, const char *prio
,
51 const char *server_fp
, int verify
);