|
SSL_get_current_cipher(3) -- get SSL_CIPHER of a connection
|
SSL_get_current_cipher() returns a pointer to an SSL_CIPHER object containing the description of the actually used cipher of a connection established with the ssl object. SSL_get_cipher() and SSL_get_... |
SSL_get_default_timeout(3) -- get default session timeout value
|
SSL_get_default_timeout() returns the default timeout value assigned to SSL_SESSION objects negotiated for the protocol valid for ssl. |
SSL_get_error(3) -- obtain result code for TLS/SSL I/O operation
|
SSL_get_error() returns a result code (suitable for the C "switch" statement) for a preceding call to SSL_connect(), SSL_accept(), SSL_do_handshake(), SSL_read(), SSL_peek(), or SSL_write() on ssl. ... |
SSL_get_ex_data_X509_STORE_CTX_idx(3) -- get ex_data index to access SSL structure from X509_STORE_CTX
|
SSL_get_ex_data_X509_STORE_CTX_idx() returns the index number under which the pointer to the SSL object is stored into the X509_STORE_CTX object. |
SSL_get_ex_new_index(3) -- internal application specific data functions
|
Several OpenSSL structures can have application specific data attached to them. These functions are used internally by OpenSSL to manipulate application specific data attached to a specific structure.... |
SSL_get_fd(3) -- get file descriptor linked to an SSL object
|
SSL_get_fd() returns the file descriptor which is linked to ssl. SSL_get_rfd() and SSL_get_wfd() return the file descriptors for the read or the write channel, which can be different. If the read and ... |
SSL_get_peer_certificate(3) -- get the X509 certificate of the peer
|
SSL_get_peer_certificate() returns a pointer to the X509 certificate the peer presented. If the peer did not present a certificate, NULL is returned. |
SSL_get_peer_cert_chain(3) -- get the X509 certificate chain of the peer
|
SSL_get_peer_cert_chain() returns a pointer to STACKOF(X509) certificates forming the certificate chain of the peer. If called on the client side, the stack also contains the peer's certificate; if c... |
SSL_get_rbio(3) -- get BIO linked to an SSL object
|
SSL_get_rbio() and SSL_get_wbio() return pointers to the BIOs for the read or the write channel, which can be different. The reference count of the BIO is not incremented. |
SSL_get_session(3) -- retrieve TLS/SSL session data
|
SSL_get_session() returns a pointer to the SSL_SESSION actually used in ssl. The reference count of the SSL_SES- SION is not incremented, so that the pointer can become invalid by other operations. SS... |
SSL_get_SSL_CTX(3) -- get the SSL_CTX from which an SSL is created
|
SSL_get_SSL_CTX() returns a pointer to the SSL_CTX object, from which ssl was created with SSL_new(3). |
SSL_get_verify_result(3) -- get result of peer certificate verification
|
SSL_get_verify_result() returns the result of the verification of the X509 certificate presented by the peer, if any. |
SSL_get_version(3) -- get the protocol version of a connection.
|
SSL_get_cipher_version() returns the name of the protocol used for the connection ssl. |