Blame doc/functions/gnutls_x509_crt_get_dn

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_x509_crt_get_dn} (gnutls_x509_crt_t @var{cert}, char * @var{buf}, size_t * @var{buf_size})
Packit aea12f
@var{cert}: should contain a @code{gnutls_x509_crt_t}  type
Packit aea12f
Packit aea12f
@var{buf}: a pointer to a structure to hold the name (may be null)
Packit aea12f
Packit aea12f
@var{buf_size}: initially holds the size of  @code{buf} 
Packit aea12f
Packit aea12f
This function will copy the name of the Certificate in the provided
Packit aea12f
buffer. The name will be in the form "C=xxxx,O=yyyy,CN=zzzz" as
Packit aea12f
described in RFC4514. The output string will be ASCII or UTF-8
Packit aea12f
encoded, depending on the certificate data.
Packit aea12f
Packit Service 991b93
If  @code{buf} is null then only the size will be filled.
Packit aea12f
Packit aea12f
This function does not output a fully RFC4514 compliant string, if
Packit aea12f
that is required see @code{gnutls_x509_crt_get_dn3()} .
Packit aea12f
Packit aea12f
@strong{Returns:} @code{GNUTLS_E_SHORT_MEMORY_BUFFER}  if the provided buffer is not
Packit aea12f
long enough, and in that case the  @code{buf_size} will be updated
Packit aea12f
with the required size. @code{GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE}  if
Packit aea12f
the DN does not exist, or another error value on error. On success 0 is returned.
Packit aea12f
@end deftypefun