Add `gnutls/dtls.h' to the distribution.
[gnutls.git] / lib / auth_cert.h
blob71ecdfd4c457f157d6f7a87c65f577cfcb39b412
1 /*
2 * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2010 Free Software
3 * Foundation, Inc.
5 * Author: Nikos Mavrogiannopoulos
7 * This file is part of GnuTLS.
9 * The GnuTLS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1 of
12 * the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22 * USA
26 #ifndef AUTH_CERT_H
27 #define AUTH_CERT_H
28 #include "gnutls_cert.h"
29 #include "gnutls_auth.h"
30 #include "auth_dh_common.h"
31 #include "x509/x509_int.h"
32 #include "openpgp/openpgp_int.h"
33 #include <gnutls/abstract.h>
34 #include <gnutls/compat.h>
36 /* This structure may be complex, but it's the only way to
37 * support a server that has multiple certificates
39 typedef struct gnutls_certificate_credentials_st
41 gnutls_dh_params_t dh_params;
42 gnutls_rsa_params_t rsa_params;
43 /* this callback is used to retrieve the DH or RSA
44 * parameters.
46 gnutls_params_function *params_func;
48 gnutls_cert **cert_list;
49 /* contains a list of a list of certificates.
50 * eg (X509): [0] certificate1, certificate11, certificate111
51 * (if more than one, one certificate certifies the one before)
52 * [1] certificate2, certificate22, ...
54 unsigned *cert_list_length;
55 /* contains the number of the certificates in a
56 * row (should be 1 for OpenPGP keys).
58 unsigned ncerts; /* contains the number of columns in cert_list.
59 * This is the same with the number of pkeys.
62 gnutls_privkey_t *pkey;
63 /* private keys. It contains ncerts private
64 * keys. pkey[i] corresponds to certificate in
65 * cert_list[i][0].
68 #ifdef ENABLE_OPENPGP
69 /* OpenPGP specific stuff */
70 gnutls_openpgp_keyring_t keyring;
71 #endif
73 /* X509 specific stuff */
74 gnutls_x509_trust_list_t tlist;
75 unsigned int verify_flags; /* flags to be used at
76 * certificate verification.
78 unsigned int verify_depth;
79 unsigned int verify_bits;
81 /* holds a sequence of the
82 * RDNs of the CAs above.
83 * This is better than
84 * generating on every handshake.
86 gnutls_datum_t x509_rdn_sequence;
88 gnutls_certificate_client_retrieve_function *client_get_cert_callback; /* deprecated */
89 gnutls_certificate_server_retrieve_function *server_get_cert_callback; /* deprecated */
90 gnutls_certificate_verify_function *verify_callback;
92 gnutls_certificate_retrieve_function *get_cert_callback;
93 } certificate_credentials_st;
95 typedef struct rsa_info_st
97 gnutls_datum_t modulus;
98 gnutls_datum_t exponent;
99 } rsa_info_st;
101 /* This is the information we keep for the peer
102 * certificate.
104 typedef struct cert_auth_info_st
106 /* These (dh/rsa) are just copies from the credentials_t structure.
107 * They must be freed.
109 dh_info_st dh;
110 rsa_info_st rsa_export;
112 gnutls_datum_t *raw_certificate_list; /* holds the raw certificate of the
113 * peer.
115 unsigned int ncerts; /* holds the size of the list above */
117 gnutls_certificate_type_t cert_type;
118 gnutls_sign_algorithm_t sign_algo;
119 #ifdef ENABLE_OPENPGP
120 int use_subkey;
121 gnutls_openpgp_keyid_t subkey_id;
122 #endif
123 } *cert_auth_info_t;
125 typedef struct cert_auth_info_st cert_auth_info_st;
127 void _gnutls_free_rsa_info (rsa_info_st * rsa);
129 /* AUTH X509 functions */
130 int _gnutls_gen_cert_server_certificate (gnutls_session_t, gnutls_buffer_st *);
131 int _gnutls_gen_cert_client_certificate (gnutls_session_t, gnutls_buffer_st *);
132 int _gnutls_gen_cert_client_cert_vrfy (gnutls_session_t, gnutls_buffer_st *);
133 int _gnutls_gen_cert_server_cert_req (gnutls_session_t, gnutls_buffer_st *);
134 int _gnutls_proc_cert_cert_req (gnutls_session_t, opaque *, size_t);
135 int _gnutls_proc_cert_client_cert_vrfy (gnutls_session_t, opaque *, size_t);
136 int _gnutls_proc_cert_server_certificate (gnutls_session_t, opaque *, size_t);
137 int _gnutls_get_selected_cert (gnutls_session_t session,
138 gnutls_cert ** apr_cert_list,
139 int *apr_cert_list_length,
140 gnutls_privkey_t * apr_pkey);
142 int _gnutls_server_select_cert (struct gnutls_session_int *,
143 gnutls_pk_algorithm_t);
144 void _gnutls_selected_certs_deinit (gnutls_session_t session);
145 void _gnutls_selected_certs_set (gnutls_session_t session,
146 gnutls_cert * certs, int ncerts,
147 gnutls_privkey_t key, int need_free);
149 #define _gnutls_proc_cert_client_certificate _gnutls_proc_cert_server_certificate
151 gnutls_rsa_params_t _gnutls_certificate_get_rsa_params (gnutls_rsa_params_t
152 rsa_params,
153 gnutls_params_function
154 * func,
155 gnutls_session_t);
157 int _gnutls_get_auth_info_gcert (gnutls_cert * gcert,
158 gnutls_certificate_type_t type,
159 cert_auth_info_t info,
160 int flags /* OR of ConvFlags */ );
162 int certificate_credential_append_crt_list (gnutls_certificate_credentials_t
163 res, gnutls_cert * crt, int nr);
164 int certificate_credentials_append_pkey (gnutls_certificate_credentials_t res,
165 gnutls_privkey_t pkey);
167 #endif