1gnutls_x509_crt_set_issuer_alt_name(3g)nutlgsnutls_x509_crt_set_issuer_alt_name(3)
2
3
4
6 gnutls_x509_crt_set_issuer_alt_name - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crt_set_issuer_alt_name(gnutls_x509_crt_t crt,
12 gnutls_x509_subject_alt_name_t type, const void * data, unsigned int
13 data_size, unsigned int flags);
14
16 gnutls_x509_crt_t crt
17 a certificate of type gnutls_x509_crt_t
18
19 gnutls_x509_subject_alt_name_t type
20 is one of the gnutls_x509_subject_alt_name_t enumerations
21
22 const void * data
23 The data to be set
24
25 unsigned int data_size
26 The size of data to be set
27
28 unsigned int flags
29 GNUTLS_FSAN_SET to clear previous data or GNUTLS_FSAN_AP‐
30 PEND to append.
31
33 This function will set the issuer alternative name certificate exten‐
34 sion. It can set the same types as gnutls_x509_crt_set_sub‐
35 ject_alt_name().
36
37 Since version 3.5.7 the GNUTLS_SAN_RFC822NAME, GNUTLS_SAN_DNSNAME, and
38 GNUTLS_SAN_OTHERNAME_XMPP are converted to ACE format when necessary.
39
41 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise a negative er‐
42 ror value.
43
45 3.3.0
46
48 Report bugs to <bugs@gnutls.org>.
49 Home page: https://www.gnutls.org
50
51
53 Copyright © 2001- Free Software Foundation, Inc., and others.
54 Copying and distribution of this file, with or without modification,
55 are permitted in any medium without royalty provided the copyright no‐
56 tice and this notice are preserved.
57
59 The full documentation for gnutls is maintained as a Texinfo manual.
60 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
61 visit
62
63 https://www.gnutls.org/manual/
64
65gnutls 3.7.g2nutls_x509_crt_set_issuer_alt_name(3)