]> git.ipfire.org Git - thirdparty/qemu.git/blame - include/crypto/tlscreds.h
Move QOM typedefs and add missing includes
[thirdparty/qemu.git] / include / crypto / tlscreds.h
CommitLineData
a090187d
DB
1/*
2 * QEMU crypto TLS credential support
3 *
4 * Copyright (c) 2015 Red Hat, Inc.
5 *
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
b7cbb874 9 * version 2.1 of the License, or (at your option) any later version.
a090187d
DB
10 *
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.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
121d0712
MA
21#ifndef QCRYPTO_TLSCREDS_H
22#define QCRYPTO_TLSCREDS_H
a090187d 23
9af23989 24#include "qapi/qapi-types-crypto.h"
a090187d
DB
25#include "qom/object.h"
26
27#ifdef CONFIG_GNUTLS
28#include <gnutls/gnutls.h>
29#endif
30
31#define TYPE_QCRYPTO_TLS_CREDS "tls-creds"
db1015e9 32typedef struct QCryptoTLSCreds QCryptoTLSCreds;
a090187d
DB
33#define QCRYPTO_TLS_CREDS(obj) \
34 OBJECT_CHECK(QCryptoTLSCreds, (obj), TYPE_QCRYPTO_TLS_CREDS)
35
a090187d
DB
36typedef struct QCryptoTLSCredsClass QCryptoTLSCredsClass;
37
38#define QCRYPTO_TLS_CREDS_DH_PARAMS "dh-params.pem"
39
40
41/**
42 * QCryptoTLSCreds:
43 *
44 * The QCryptoTLSCreds object is an abstract base for different
45 * types of TLS handshake credentials. Most commonly the
46 * QCryptoTLSCredsX509 subclass will be used to provide x509
47 * certificate credentials.
48 */
49
50struct QCryptoTLSCreds {
51 Object parent_obj;
52 char *dir;
53 QCryptoTLSCredsEndpoint endpoint;
54#ifdef CONFIG_GNUTLS
55 gnutls_dh_params_t dh_params;
56#endif
57 bool verifyPeer;
13f12430 58 char *priority;
a090187d
DB
59};
60
61
62struct QCryptoTLSCredsClass {
63 ObjectClass parent_class;
64};
65
66
121d0712 67#endif /* QCRYPTO_TLSCREDS_H */