bdcda98618b07b621189a22e07368a07bf95bf95
[openssl.git] / doc / crypto / ct.pod
1 =pod
2
3 =for comment openssl_manual_section:7
4
5 =head1 NAME
6
7 ct - Certificate Transparency
8
9 =head1 SYNOPSIS
10
11  #include <openssl/ct.h>
12
13 =head1 DESCRIPTION
14
15 This library implements Certificate Transparency (CT) verification for TLS
16 clients, as defined in RFC 6962. This verification can provide some confidence
17 that a certificate has been publicly logged in a set of CT logs.
18
19 By default, these checks are disabled. They can be enabled using
20 SSL_CTX_ct_enable() or SSL_ct_enable().
21
22 This library can also be used to parse and examine CT data structures, such as
23 Signed Certificate Timestamps (SCTs), or to read a list of CT logs. There are
24 functions for:
25 - decoding and encoding SCTs in DER and TLS wire format.
26 - printing SCTs.
27 - verifying the authenticity of SCTs.
28 - loading a CT log list from a CONF file.
29
30 =head1 SEE ALSO
31
32 L<d2i_SCT_LIST(3)>,
33 L<CTLOG_STORE_new(3)>,
34 L<CTLOG_STORE_get0_log_by_id(3)>,
35 L<SCT_new(3)>,
36 L<SCT_print(3)>,
37 L<SCT_verify(3)>,
38 L<SCT_validate(3)>,
39 L<CT_POLICY_EVAL_CTX(3)>,
40 L<SSL_CTX_set_ct_validation_callback(3)>
41
42 =head1 HISTORY
43
44 This library was added in OpenSSL 1.1.0.
45
46 =head1 COPYRIGHT
47
48 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
49
50 Licensed under the OpenSSL license (the "License").  You may not use
51 this file except in compliance with the License.  You can obtain a copy
52 in the file LICENSE in the source distribution or at
53 L<https://www.openssl.org/source/license.html>.
54
55 =cut