=pod=head1 NAMESSL_get0_peer_scts - get SCTs received=head1 SYNOPSIS #include <openssl/ssl.h> const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s);=head1 DESCRIPTIONSSL_get0_peer_scts() returns the signed certificate timestamps (SCTs) that havebeen received. If this is the first time that this function has been called fora given B<SSL> instance, it will examine the TLS extensions, OCSP response andthe peer's certificate for SCTs. Future calls will return the same SCTs.=head1 RESTRICTIONSIf no Certificate Transparency validation callback has been set (usingB<SSL_CTX_set_ct_validation_callback> or B<SSL_set_ct_validation_callback>),this function is not guarantee to return all of the SCTs that the peer iscapable of sending.=head1 RETURN VALUESSSL_get0_peer_scts() returns a list of SCTs found, or NULL if an error occurs.=head1 SEE ALSOL<ssl(3)>,L<SSL_CTX_set_ct_validation_callback(3)>=cut