blob: 6242d5be55aa90fb0fb7b2e4c3afd83fae65ce62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@deftypefun {int} {gnutls_x509_ext_ct_import_scts} (const gnutls_datum_t * @var{ext}, gnutls_x509_ct_scts_t @var{scts}, unsigned int @var{flags})
@var{ext}: a DER-encoded extension
@var{scts}: The SCT list
@var{flags}: should be zero
This function will read a SignedCertificateTimestampList structure
from the DER data of the X.509 Certificate Transparency SCT extension
(OID 1.3.6.1.4.1.11129.2.4.2).
The list of SCTs (Signed Certificate Timestamps) is placed on @code{scts} ,
which must be previously initialized with @code{gnutls_x509_ext_ct_scts_init()} .
@strong{Returns:} @code{GNUTLS_E_SUCCESS} (0) on success or a negative error value.
@end deftypefun
|