SSL_get_peer_tmp_key(3) | OpenSSL | SSL_get_peer_tmp_key(3) |
#include <openssl/ssl.h> long SSL_get_peer_tmp_key(SSL *ssl, EVP_PKEY **key); long SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **key); long SSL_get_tmp_key(SSL *ssl, EVP_PKEY **key);
SSL_get_server_tmp_key() is a backwards compatibility alias for SSL_get_peer_tmp_key(). Under that name it worked just on the client side of the connection, its behaviour on the server end is release-dependent.
SSL_get_tmp_key() returns the equivalent information for the local end of the connection.
Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>.
2018-12-08 | 1.1.1i |