Blame doc/functions/gnutls_x509_trust_list_add_crls

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_x509_trust_list_add_crls} (gnutls_x509_trust_list_t @var{list}, const gnutls_x509_crl_t * @var{crl_list}, unsigned @var{crl_size}, unsigned int @var{flags}, unsigned int @var{verification_flags})
Packit aea12f
@var{list}: The list
Packit aea12f
Packit aea12f
@var{crl_list}: A list of CRLs
Packit aea12f
Packit aea12f
@var{crl_size}: The length of the CRL list
Packit aea12f
Packit aea12f
@var{flags}: flags from @code{gnutls_trust_list_flags_t} 
Packit aea12f
Packit aea12f
@var{verification_flags}: gnutls_certificate_verify_flags if flags specifies GNUTLS_TL_VERIFY_CRL
Packit aea12f
Packit aea12f
This function will add the given certificate revocation lists
Packit aea12f
to the trusted list. The CRLs in  @code{crl_list} must not be deinitialized
Packit aea12f
during the lifetime of  @code{list} .
Packit aea12f
Packit aea12f
This function must be called after @code{gnutls_x509_trust_list_add_cas()} 
Packit aea12f
to allow verifying the CRLs for validity. If the flag @code{GNUTLS_TL_NO_DUPLICATES} 
Packit aea12f
is given, then the final CRL list will not contain duplicate entries.
Packit aea12f
Packit aea12f
If the flag @code{GNUTLS_TL_NO_DUPLICATES}  is given, @code{gnutls_x509_trust_list_deinit()}  must be
Packit aea12f
called with parameter  @code{all} being 1.
Packit aea12f
Packit aea12f
If flag @code{GNUTLS_TL_VERIFY_CRL}  is given the CRLs will be verified before being added,
Packit aea12f
and if verification fails, they will be skipped.
Packit aea12f
Packit aea12f
@strong{Returns:} The number of added elements is returned; that includes
Packit aea12f
duplicate entries.
Packit aea12f
Packit aea12f
@strong{Since:} 3.0
Packit aea12f
@end deftypefun