1gnutls_x509_crl_list_import2(3) gnutls gnutls_x509_crl_list_import2(3)
2
3
4
6 gnutls_x509_crl_list_import2 - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crl_list_import2(gnutls_x509_crl_t ** crls, unsigned
12 int * size, const gnutls_datum_t * data, gnutls_x509_crt_fmt_t format,
13 unsigned int flags);
14
16 gnutls_x509_crl_t ** crls
17 Will contain the parsed crl list.
18
19 unsigned int * size
20 It will contain the size of the list.
21
22 const gnutls_datum_t * data
23 The PEM encoded CRL.
24
25 gnutls_x509_crt_fmt_t format
26 One of DER or PEM.
27
28 unsigned int flags
29 must be (0) or an OR'd sequence of gnutls_certifi‐
30 cate_import_flags.
31
33 This function will convert the given PEM encoded CRL list to the native
34 gnutls_x509_crl_t format. The output will be stored in crls . They
35 will be automatically initialized.
36
37 If the Certificate is PEM encoded it should have a header of "X509
38 CRL".
39
41 the number of certificates read or a negative error value.
42
44 3.0
45
47 Report bugs to <bugs@gnutls.org>.
48 Home page: http://www.gnutls.org
49
50
52 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
53 Copying and distribution of this file, with or without modification,
54 are permitted in any medium without royalty provided the copyright
55 notice and this notice are preserved.
56
58 The full documentation for gnutls is maintained as a Texinfo manual.
59 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
60 visit
61
62 http://www.gnutls.org/manual/
63
64gnutls 3.6.5 gnutls_x509_crl_list_import2(3)