1gnutls_pkcs7_get_crl_raw(3) gnutls gnutls_pkcs7_get_crl_raw(3)
2
3
4
6 gnutls_pkcs7_get_crl_raw - This function returns a crl in a PKCS7 crl
7 set
8
10 #include <gnutls/x509.h>
11
12 int gnutls_pkcs7_get_crl_raw(gnutls_pkcs7_t pkcs7, int indx, void *
13 crl, size_t * crl_size);
14
16 gnutls_pkcs7_t pkcs7
17
18 int indx contains the index of the crl to extract
19
20 void * crl the contents of the crl will be copied there (may be null)
21
22 size_t * crl_size
23 should hold the size of the crl
24
26 This function will return a crl of the PKCS7 or RFC2630 crl set.
27 Returns 0 on success. If the provided buffer is not long enough, then
28 crl_size is updated and GNUTLS_E_SHORT_MEMORY_BUFFER is returned.
29
30 After the last crl has been read GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE
31 will be returned.
32
34 Report bugs to <bug-gnutls@gnu.org>.
35
37 Copyright © 2006 Free Software Foundation.
38 Permission is granted to make and distribute verbatim copies of this
39 manual provided the copyright notice and this permission notice are
40 preserved on all copies.
41
43 The full documentation for gnutls is maintained as a Texinfo manual.
44 If the info and gnutls programs are properly installed at your site,
45 the command
46
47 info gnutls
48
49 should give you access to the complete manual.
50
51
52
53gnutls 1.6.3 gnutls_pkcs7_get_crl_raw(3)