1 /*
2  * Copyright (C) 2016 - 2018 ARPA2 project
3  *
4  * Author: Tom Vrancken (dev@tomvrancken.nl)
5  *
6  * This file is part of GnuTLS.
7  *
8  * The GnuTLS is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>
20  *
21  * This file is part of the client_certificate_type extension as
22  * defined in RFC7250 (https://tools.ietf.org/html/rfc7250).
23  *
24  * The client_certificate_type extension in the client hello indicates
25  * the certificate types the client is able to provide to the server,
26  * when requested using a certificate_request message.
27  */
28 
29 #ifndef GNUTLS_LIB_EXT_CLIENT_CERT_TYPE_H
30 #define GNUTLS_LIB_EXT_CLIENT_CERT_TYPE_H
31 
32 #include <hello_ext.h>
33 
34 extern const hello_ext_entry_st ext_mod_client_cert_type;
35 
36 #endif /* GNUTLS_LIB_EXT_CLIENT_CERT_TYPE_H */
37