First draft of CT documentation
[openssl.git] / doc / crypto / SCT_validate.pod
1 =pod
2
3 =head1 NAME
4
5 SCT_validate, SCT_LIST_validate, SCT_get_validation_status -
6 checks Signed Certificate Timestamps meet a Certificate Transparency policy
7
8 =head1 SYNOPSIS
9
10  #include <openssl/ct.h>
11
12  sct_validation_status_t SCT_get_validation_status(const SCT *sct);
13  int SCT_validate(SCT *sct, const CT_POLICY_EVAL_CTX *ctx);
14  int SCT_LIST_validate(const STACK_OF(SCT) *scts, CT_POLICY_EVAL_CTX *ctx);
15
16 =head1 DESCRIPTION
17
18
19
20 =head1 NOTES
21
22
23
24 =head1 RETURN VALUES
25
26
27
28 =head1 SEE ALSO
29
30 L<ct(3)>
31
32 =head1 COPYRIGHT
33
34 Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
35
36 Licensed under the OpenSSL license (the "License").  You may not use
37 this file except in compliance with the License.  You can obtain a copy
38 in the file LICENSE in the source distribution or at
39 L<https://www.openssl.org/source/license.html>.
40
41 =cut