ssl_get_peer_cert_chain.pod

来自「开源的ssl算法openssl,版本0.9.8H」· POD 代码 · 共 53 行

POD
53
字号
=pod=head1 NAMESSL_get_peer_cert_chain - get the X509 certificate chain of the peer=head1 SYNOPSIS #include <openssl/ssl.h> STACKOF(X509) *SSL_get_peer_cert_chain(const SSL *ssl);=head1 DESCRIPTIONSSL_get_peer_cert_chain() returns a pointer to STACKOF(X509) certificatesforming the certificate chain of the peer. If called on the client side,the stack also contains the peer's certificate; if called on the serverside, the peer's certificate must be obtained separately usingL<SSL_get_peer_certificate(3)|SSL_get_peer_certificate(3)>.If the peer did not present a certificate, NULL is returned.=head1 NOTESThe peer certificate chain is not necessarily available after reusinga session, in which case a NULL pointer is returned.The reference count of the STACKOF(X509) object is not incremented.If the corresponding session is freed, the pointer must not be usedany longer.=head1 RETURN VALUESThe following return values can occur:=over 4=item NULLNo certificate was presented by the peer or no connection was establishedor the certificate chain is no longer available when a session is reused.=item Pointer to a STACKOF(X509)The return value points to the certificate chain presented by the peer.=back=head1 SEE ALSOL<ssl(3)|ssl(3)>, L<SSL_get_peer_certificate(3)|SSL_get_peer_certificate(3)>=cut

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?