1gnutls_x509_crl_get_authority_key_id(g3n)utglnsutls_x509_crl_get_authority_key_id(3)
2
3
4
6 gnutls_x509_crl_get_authority_key_id - get the CRL authority's identi‐
7 fier
8
10 #include <gnutls/x509.h>
11
12 int gnutls_x509_crl_get_authority_key_id(gnutls_x509_crl_t crl, void *
13 ret, size_t * ret_size, unsigned int * critical);
14
16 gnutls_x509_crl_t crl
17 should contain a gnutls_x509_crl_t structure
18
19 void * ret The place where the identifier will be copied
20
21 size_t * ret_size
22 Holds the size of the result field.
23
24 unsigned int * critical
25 will be non zero if the extension is marked as critical
26 (may be null)
27
29 This function will return the CRL authority's key identifier. This is
30 obtained by the X.509 Authority Key identifier extension field
31 (2.5.29.35). Note that this function only returns the keyIdentifier
32 field of the extension.
33
35 On success, GNUTLS_E_SUCCESS is returned, otherwise a negative value in
36 case of an error.
37
39 2.8.0
40
42 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
43 http://www.gnu.org/software/gnutls/ General help using GNU software:
44 http://www.gnu.org/gethelp/
45
47 Copyright © 2008 Free Software Foundation.
48 Copying and distribution of this file, with or without modification,
49 are permitted in any medium without royalty provided the copyright
50 notice and this notice are preserved.
51
53 The full documentation for gnutls is maintained as a Texinfo manual.
54 If the info and gnutls programs are properly installed at your site,
55 the command
56
57 info gnutls
58
59 should give you access to the complete manual.
60
61
62
63gnutls 2.8g.n6utls_x509_crl_get_authority_key_id(3)