diff options
author | schwarze <> | 2016-12-10 13:54:32 +0000 |
---|---|---|
committer | schwarze <> | 2016-12-10 13:54:32 +0000 |
commit | 7861e7da79ff45f2ba53802840b5e46511f3b002 (patch) | |
tree | c3f7af2ec1c2fe9a4797b7c3abbe06d40c344552 /src/lib/libssl/man/Makefile | |
parent | 5c25f84f5f6a33946cfa19725ef930c22a1659c8 (diff) | |
download | openbsd-7861e7da79ff45f2ba53802840b5e46511f3b002.tar.gz openbsd-7861e7da79ff45f2ba53802840b5e46511f3b002.tar.bz2 openbsd-7861e7da79ff45f2ba53802840b5e46511f3b002.zip |
New manual pages SSL_get_certificate(3), SSL_get_state(3), and
SSL_num_renegotiations(3) written from scratch. These functions
are listed in ssl(3) and <openssl/ssl.h>, so they are clearly public.
Diffstat (limited to 'src/lib/libssl/man/Makefile')
-rw-r--r-- | src/lib/libssl/man/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/man/Makefile b/src/lib/libssl/man/Makefile index f58f568de7..d1d7bf3cc6 100644 --- a/src/lib/libssl/man/Makefile +++ b/src/lib/libssl/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.50 2016/12/07 20:11:55 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.51 2016/12/10 13:54:32 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | 4 | ||
@@ -60,6 +60,7 @@ MAN = BIO_f_ssl.3 \ | |||
60 | SSL_dup_CA_list.3 \ | 60 | SSL_dup_CA_list.3 \ |
61 | SSL_free.3 \ | 61 | SSL_free.3 \ |
62 | SSL_get_SSL_CTX.3 \ | 62 | SSL_get_SSL_CTX.3 \ |
63 | SSL_get_certificate.3 \ | ||
63 | SSL_get_ciphers.3 \ | 64 | SSL_get_ciphers.3 \ |
64 | SSL_get_client_CA_list.3 \ | 65 | SSL_get_client_CA_list.3 \ |
65 | SSL_get_current_cipher.3 \ | 66 | SSL_get_current_cipher.3 \ |
@@ -72,11 +73,13 @@ MAN = BIO_f_ssl.3 \ | |||
72 | SSL_get_peer_certificate.3 \ | 73 | SSL_get_peer_certificate.3 \ |
73 | SSL_get_rbio.3 \ | 74 | SSL_get_rbio.3 \ |
74 | SSL_get_session.3 \ | 75 | SSL_get_session.3 \ |
76 | SSL_get_state.3 \ | ||
75 | SSL_get_verify_result.3 \ | 77 | SSL_get_verify_result.3 \ |
76 | SSL_get_version.3 \ | 78 | SSL_get_version.3 \ |
77 | SSL_library_init.3 \ | 79 | SSL_library_init.3 \ |
78 | SSL_load_client_CA_file.3 \ | 80 | SSL_load_client_CA_file.3 \ |
79 | SSL_new.3 \ | 81 | SSL_new.3 \ |
82 | SSL_num_renegotiations.3 \ | ||
80 | SSL_pending.3 \ | 83 | SSL_pending.3 \ |
81 | SSL_read.3 \ | 84 | SSL_read.3 \ |
82 | SSL_renegotiate.3 \ | 85 | SSL_renegotiate.3 \ |