Last change
on this file since 86719 was 86560, checked in by vboxsync, 4 years ago |
openssl-1.1.1h: Applied our OpenSSL changes to 1.1.1h. Didn't check te build. bugref:9847
|
File size:
1.2 KB
|
Line | |
---|
1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | SSL_get0_peer_scts - get SCTs received
|
---|
6 |
|
---|
7 | =head1 SYNOPSIS
|
---|
8 |
|
---|
9 | #include <openssl/ssl.h>
|
---|
10 |
|
---|
11 | const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s);
|
---|
12 |
|
---|
13 | =head1 DESCRIPTION
|
---|
14 |
|
---|
15 | SSL_get0_peer_scts() returns the signed certificate timestamps (SCTs) that have
|
---|
16 | been received. If this is the first time that this function has been called for
|
---|
17 | a given B<SSL> instance, it will examine the TLS extensions, OCSP response and
|
---|
18 | the peer's certificate for SCTs. Future calls will return the same SCTs.
|
---|
19 |
|
---|
20 | =head1 RESTRICTIONS
|
---|
21 |
|
---|
22 | If no Certificate Transparency validation callback has been set (using
|
---|
23 | B<SSL_CTX_set_ct_validation_callback> or B<SSL_set_ct_validation_callback>),
|
---|
24 | this function is not guaranteed to return all of the SCTs that the peer is
|
---|
25 | capable of sending.
|
---|
26 |
|
---|
27 | =head1 RETURN VALUES
|
---|
28 |
|
---|
29 | SSL_get0_peer_scts() returns a list of SCTs found, or NULL if an error occurs.
|
---|
30 |
|
---|
31 | =head1 SEE ALSO
|
---|
32 |
|
---|
33 | L<ssl(7)>,
|
---|
34 | L<SSL_CTX_set_ct_validation_callback(3)>
|
---|
35 |
|
---|
36 | =head1 COPYRIGHT
|
---|
37 |
|
---|
38 | Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
---|
39 |
|
---|
40 | Licensed under the OpenSSL license (the "License"). You may not use
|
---|
41 | this file except in compliance with the License. You can obtain a copy
|
---|
42 | in the file LICENSE in the source distribution or at
|
---|
43 | L<https://www.openssl.org/source/license.html>.
|
---|
44 |
|
---|
45 | =cut
|
---|
Note:
See
TracBrowser
for help on using the repository browser.