1
2
3
4
5@deftypefun {int} {gnutls_x509_dn_export2} (gnutls_x509_dn_t @var{dn}, gnutls_x509_crt_fmt_t @var{format}, gnutls_datum_t * @var{out})
6@var{dn}: Holds the uint8_t DN object
7
8@var{format}: the format of output params. One of PEM or DER.
9
10@var{out}: will contain a DN PEM or DER encoded
11
12This function will export the DN to DER or PEM format.
13
14The output buffer is allocated using @code{gnutls_malloc()} .
15
16If the structure is PEM encoded, it will have a header
17of "BEGIN NAME".
18
19@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
20negative error value.
21
22@strong{Since:} 3.1.3
23@end deftypefun
24