1
2
3
4
5@deftypefun {int} {gnutls_x509_crt_set_issuer_alt_name} (gnutls_x509_crt_t @var{crt}, gnutls_x509_subject_alt_name_t @var{type}, const void * @var{data}, unsigned int @var{data_size}, unsigned int @var{flags})
6@var{crt}: a certificate of type @code{gnutls_x509_crt_t}
7
8@var{type}: is one of the gnutls_x509_subject_alt_name_t enumerations
9
10@var{data}: The data to be set
11
12@var{data_size}: The size of data to be set
13
14@var{flags}: GNUTLS_FSAN_SET to clear previous data or GNUTLS_FSAN_APPEND to append.
15
16This function will set the issuer alternative name certificate
17extension. It can set the same types as @code{gnutls_x509_crt_set_subject_alt_name()} .
18
19Since version 3.5.7 the @code{GNUTLS_SAN_RFC822NAME} , @code{GNUTLS_SAN_DNSNAME} , and
20@code{GNUTLS_SAN_OTHERNAME_XMPP}  are converted to ACE format when necessary.
21
22@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
23negative error value.
24
25@strong{Since:} 3.3.0
26@end deftypefun
27