1gnutls_certificate_set_x509_crl(3) gnutls gnutls_certificate_set_x509_crl(3)
2
3
4
6 gnutls_certificate_set_x509_crl - Used to add CRLs in a gnutls_certifi‐
7 cate_credentials_t structure
8
10 #include <gnutls/gnutls.h>
11
12 int gnutls_certificate_set_x509_crl(gnutls_certificate_credentials_t
13 res, gnutls_x509_crl_t * crl_list, int crl_list_size);
14
16 gnutls_certificate_credentials_t res
17 is an gnutls_certificate_credentials_t structure.
18
19 gnutls_x509_crl_t * crl_list
20 is a list of trusted CRLs. They should have been verified
21 before.
22
23 int crl_list_size
24 holds the size of the crl_list
25
27 This function adds the trusted CRLs in order to verify client or server
28 certificates. In case of a client this is not required to be called if
29 the certificates are not verified using gnutls_certificate_ver‐
30 ify_peers2(). This function may be called multiple times.
31
32 Returns 0 on success.
33
35 Report bugs to <bug-gnutls@gnu.org>.
36
38 Copyright © 2006 Free Software Foundation.
39 Permission is granted to make and distribute verbatim copies of this
40 manual provided the copyright notice and this permission notice are
41 preserved on all copies.
42
44 The full documentation for gnutls is maintained as a Texinfo manual.
45 If the info and gnutls programs are properly installed at your site,
46 the command
47
48 info gnutls
49
50 should give you access to the complete manual.
51
52
53
54gnutls 1.6.3 gnutls_certificate_set_x509_crl(3)