2 Copyright (C) 2012-2024 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 version 2.1 as published by the Free Software Foundation.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
24 #include <gnutls/gnutls.h>
25 #include <gnutls/x509.h>
36 gnutls_session_t session
;
37 gnutls_certificate_credentials_t x509
;
42 ssize_t
tls_write_hook (pwm_t
*, assuan_fd_t fd
, const void *data
, size_t len
);
43 ssize_t
tls_read_hook (pwm_t
*, assuan_fd_t fd
, void *data
, size_t len
);
44 void tls_free (pwm_t
*);
45 gpg_error_t
tls_parse_url (const char *str
, char **host
, int *port
);
46 gpg_error_t
tls_connect (pwm_t
* pwm
, const char *host
, int port
,
47 const char *cert
, const char *key
,
48 const char *cacert
, const char *prio
,
49 const char *server_fp
, int verify
);