1gnutls_x509_crt_get_issuer_alt_name(3g)nutlgsnutls_x509_crt_get_issuer_alt_name(3)
2
3
4
6 gnutls_x509_crt_get_issuer_alt_name - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crt_get_issuer_alt_name(gnutls_x509_crt_t cert,
12 unsigned int seq, void * ian, size_t * ian_size, unsigned int * criti‐
13 cal);
14
16 gnutls_x509_crt_t cert
17 should contain a gnutls_x509_crt_t type
18
19 unsigned int seq
20 specifies the sequence number of the alt name (0 for the
21 first one, 1 for the second etc.)
22
23 void * ian is the place where the alternative name will be copied to
24
25 size_t * ian_size
26 holds the size of ian.
27
28 unsigned int * critical
29 will be non-zero if the extension is marked as critical
30 (may be null)
31
33 This function retrieves the Issuer Alternative Name (2.5.29.18), con‐
34 tained in the given certificate in the X509v3 Certificate Extensions.
35
36 When the SAN type is otherName, it will extract the data in the other‐
37 Name's value field, and GNUTLS_SAN_OTHERNAME is returned. You may use
38 gnutls_x509_crt_get_subject_alt_othername_oid() to get the correspond‐
39 ing OID and the "virtual" SAN types (e.g., GNUTLS_SAN_OTHERNAME_XMPP).
40
41 If an otherName OID is known, the data will be decoded. Otherwise the
42 returned data will be DER encoded, and you will have to decode it your‐
43 self. Currently, only the RFC 3920 id-on-xmppAddr Issuer AltName is
44 recognized.
45
47 the alternative issuer name type on success, one of the enumerated
48 gnutls_x509_subject_alt_name_t. It will return GNUTLS_E_SHORT_MEM‐
49 ORY_BUFFER if ian_size is not large enough to hold the value. In that
50 case ian_size will be updated with the required size. If the certifi‐
51 cate does not have an Alternative name with the specified sequence num‐
52 ber then GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE is returned.
53
55 2.10.0
56
58 Report bugs to <bugs@gnutls.org>.
59 Home page: http://www.gnutls.org
60
61
63 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
64 Copying and distribution of this file, with or without modification,
65 are permitted in any medium without royalty provided the copyright
66 notice and this notice are preserved.
67
69 The full documentation for gnutls is maintained as a Texinfo manual.
70 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
71 visit
72
73 http://www.gnutls.org/manual/
74
75gnutls 3.6.g5nutls_x509_crt_get_issuer_alt_name(3)