⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ssl_get_peer_cert_chain.pod

📁 开源的ssl算法openssl,版本0.9.8H
💻 POD
字号:
=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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -