2 * QEMU crypto TLS anonymous credential support
4 * Copyright (c) 2015 Red Hat, Inc.
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, see <http://www.gnu.org/licenses/>.
21 #ifndef QCRYPTO_TLSCREDSANON_H
22 #define QCRYPTO_TLSCREDSANON_H
24 #include "crypto/tlscreds.h"
25 #include "qom/object.h"
27 #define TYPE_QCRYPTO_TLS_CREDS_ANON "tls-creds-anon"
28 typedef struct QCryptoTLSCredsAnon QCryptoTLSCredsAnon
;
29 DECLARE_INSTANCE_CHECKER(QCryptoTLSCredsAnon
, QCRYPTO_TLS_CREDS_ANON
,
30 TYPE_QCRYPTO_TLS_CREDS_ANON
)
33 typedef struct QCryptoTLSCredsAnonClass QCryptoTLSCredsAnonClass
;
36 * QCryptoTLSCredsAnon:
38 * The QCryptoTLSCredsAnon object provides a representation
39 * of anonymous credentials used perform a TLS handshake.
40 * This is primarily provided for backwards compatibility and
41 * its use is discouraged as it has poor security characteristics
42 * due to lacking MITM attack protection amongst other problems.
44 * This is a user creatable object, which can be instantiated
45 * via object_new_propv():
48 * <title>Creating anonymous TLS credential objects in code</title>
52 * obj = object_new_propv(TYPE_QCRYPTO_TLS_CREDS_ANON,
55 * "endpoint", "server",
56 * "dir", "/path/x509/cert/dir",
57 * "verify-peer", "yes",
65 * <title>Creating anonymous TLS credential objects via QMP</title>
68 * "execute": "object-add", "arguments": {
70 * "qom-type": "tls-creds-anon",
72 * "endpoint": "server",
73 * "dir": "/path/to/x509/cert/dir",
74 * "verify-peer": false
85 * <title>Creating anonymous TLS credential objects via CLI</title>
87 * qemu-system-x86_64 -object tls-creds-anon,id=tlscreds0,\
88 * endpoint=server,verify-peer=off,\
89 * dir=/path/to/x509/certdir/
95 struct QCryptoTLSCredsAnonClass
{
96 QCryptoTLSCredsClass parent_class
;
100 #endif /* QCRYPTO_TLSCREDSANON_H */