These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / include / crypto / tlscreds.h
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
9  * version 2 of the License, or (at your option) any later version.
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
21 #ifndef QCRYPTO_TLSCRED_H__
22 #define QCRYPTO_TLSCRED_H__
23
24 #include "qom/object.h"
25
26 #ifdef CONFIG_GNUTLS
27 #include <gnutls/gnutls.h>
28 #endif
29
30 #define TYPE_QCRYPTO_TLS_CREDS "tls-creds"
31 #define QCRYPTO_TLS_CREDS(obj)                  \
32     OBJECT_CHECK(QCryptoTLSCreds, (obj), TYPE_QCRYPTO_TLS_CREDS)
33
34 typedef struct QCryptoTLSCreds QCryptoTLSCreds;
35 typedef struct QCryptoTLSCredsClass QCryptoTLSCredsClass;
36
37 #define QCRYPTO_TLS_CREDS_DH_PARAMS "dh-params.pem"
38
39
40 /**
41  * QCryptoTLSCreds:
42  *
43  * The QCryptoTLSCreds object is an abstract base for different
44  * types of TLS handshake credentials. Most commonly the
45  * QCryptoTLSCredsX509 subclass will be used to provide x509
46  * certificate credentials.
47  */
48
49 struct QCryptoTLSCreds {
50     Object parent_obj;
51     char *dir;
52     QCryptoTLSCredsEndpoint endpoint;
53 #ifdef CONFIG_GNUTLS
54     gnutls_dh_params_t dh_params;
55 #endif
56     bool verifyPeer;
57 };
58
59
60 struct QCryptoTLSCredsClass {
61     ObjectClass parent_class;
62 };
63
64
65 #endif /* QCRYPTO_TLSCRED_H__ */
66