Blame doc/functions/gnutls_x509_crt_list_import

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_x509_crt_list_import} (gnutls_x509_crt_t * @var{certs}, unsigned int * @var{cert_max}, const gnutls_datum_t * @var{data}, gnutls_x509_crt_fmt_t @var{format}, unsigned int @var{flags})
Packit aea12f
@var{certs}: Indicates where the parsed list will be copied to. Must not be initialized.
Packit aea12f
Packit aea12f
@var{cert_max}: Initially must hold the maximum number of certs. It will be updated with the number of certs available.
Packit aea12f
Packit aea12f
@var{data}: The PEM encoded certificate.
Packit aea12f
Packit aea12f
@var{format}: One of DER or PEM.
Packit aea12f
Packit aea12f
@var{flags}: must be (0) or an OR'd sequence of gnutls_certificate_import_flags.
Packit aea12f
Packit aea12f
This function will convert the given PEM encoded certificate list
Packit aea12f
to the native gnutls_x509_crt_t format. The output will be stored
Packit aea12f
in  @code{certs} .  They will be automatically initialized.
Packit aea12f
Packit aea12f
The flag @code{GNUTLS_X509_CRT_LIST_IMPORT_FAIL_IF_EXCEED}  will cause
Packit aea12f
import to fail if the certificates in the provided buffer are more
Packit aea12f
than the available structures. The @code{GNUTLS_X509_CRT_LIST_FAIL_IF_UNSORTED} 
Packit aea12f
flag will cause the function to fail if the provided list is not
Packit aea12f
sorted from subject to issuer.
Packit aea12f
Packit aea12f
If the Certificate is PEM encoded it should have a header of "X509
Packit aea12f
CERTIFICATE", or "CERTIFICATE".
Packit aea12f
Packit aea12f
@strong{Returns:} the number of certificates read or a negative error value.
Packit aea12f
@end deftypefun