Blame doc/functions/gnutls_x509_trust_list_add_crls

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