diff options
author | Matt Caswell <matt@openssl.org> | 2017-02-14 16:25:22 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-02-17 11:28:01 +0100 |
commit | 398206375688f053774ab0622a59db69fb2e2b99 (patch) | |
tree | a80edd3c5cc6d21192392d4ab0b4664797874fbb /doc/man7 | |
parent | Fix a shadowed global variable warning (diff) | |
download | openssl-398206375688f053774ab0622a59db69fb2e2b99.tar.xz openssl-398206375688f053774ab0622a59db69fb2e2b99.zip |
Add documentation for SSL_key_update() and SSL_get_key_update_type()
This also adds documentation for the pre-existing and related
SSL_renegotiate*() functions.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2609)
Diffstat (limited to 'doc/man7')
-rw-r--r-- | doc/man7/ssl.pod | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/man7/ssl.pod b/doc/man7/ssl.pod index 3b1b5810c6..b15ae7c3b6 100644 --- a/doc/man7/ssl.pod +++ b/doc/man7/ssl.pod @@ -552,6 +552,8 @@ fresh handle for each connection. =item void (*B<SSL_get_info_callback>(const SSL *ssl);)() +=item SSL_KEY_UPDATE B<SSL_get_key_update_type>(SSL *s); + =item STACK *B<SSL_get_peer_cert_chain>(const SSL *ssl); =item X509 *B<SSL_get_peer_certificate>(const SSL *ssl); @@ -600,6 +602,8 @@ fresh handle for each connection. =item int B<SSL_is_init_finished>(SSL *ssl); +=item int B<SSL_key_update>(SSL *s, SSL_KEY_UPDATE updatetype); + =item STACK *B<SSL_load_client_CA_file>(const char *file); =item SSL *B<SSL_new>(SSL_CTX *ctx); |