pwmc: Add Kyber algorithm string to .listkeys.
[libpwmd.git] / src / tls.h
blob5f8c9607b5e067e8897397d63de663fcfce69291
1 /*
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
18 USA
20 #ifndef TLS_H
21 #define TLS_H
23 #ifdef WITH_GNUTLS
24 #include <gnutls/gnutls.h>
25 #include <gnutls/x509.h>
26 #endif
28 struct tls_s
30 char *cert;
31 char *key;
32 char *ca;
33 int verify;
34 char *priority;
35 char *server_fp;
36 gnutls_session_t session;
37 gnutls_certificate_credentials_t x509;
38 int timeout;
39 int nl;
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);
51 #endif