diff options
author | tb <> | 2024-05-08 09:41:33 +0000 |
---|---|---|
committer | tb <> | 2024-05-08 09:41:33 +0000 |
commit | 64d7ced8d1130c13d23871474cf0cb1a5f1a4846 (patch) | |
tree | 395c1d606ca30a088d607cf6b696cbed45e240e8 | |
parent | 3064d328febdb0dffc9cd69259663580fd1133b4 (diff) | |
download | openbsd-64d7ced8d1130c13d23871474cf0cb1a5f1a4846.tar.gz openbsd-64d7ced8d1130c13d23871474cf0cb1a5f1a4846.tar.bz2 openbsd-64d7ced8d1130c13d23871474cf0cb1a5f1a4846.zip |
Avoid OpenSSL SSL repetitions
with the help of jmc
-rw-r--r-- | src/lib/libssl/man/ssl.3 | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lib/libssl/man/ssl.3 b/src/lib/libssl/man/ssl.3 index 4dd3d23f1c..eb4e7b8a9f 100644 --- a/src/lib/libssl/man/ssl.3 +++ b/src/lib/libssl/man/ssl.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ssl.3,v 1.22 2022/09/17 16:03:21 kn Exp $ | 1 | .\" $OpenBSD: ssl.3,v 1.23 2024/05/08 09:41:33 tb Exp $ |
2 | .\" full merge up to: OpenSSL e330f55d Nov 11 00:51:04 2016 +0100 | 2 | .\" full merge up to: OpenSSL e330f55d Nov 11 00:51:04 2016 +0100 |
3 | .\" selective merge up to: OpenSSL 322755cc Sep 1 08:40:51 2018 +0800 | 3 | .\" selective merge up to: OpenSSL 322755cc Sep 1 08:40:51 2018 +0800 |
4 | .\" | 4 | .\" |
@@ -51,16 +51,17 @@ | |||
51 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 51 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
52 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 52 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
53 | .\" | 53 | .\" |
54 | .Dd $Mdocdate: September 17 2022 $ | 54 | .Dd $Mdocdate: May 8 2024 $ |
55 | .Dt SSL 3 | 55 | .Dt SSL 3 |
56 | .Os | 56 | .Os |
57 | .Sh NAME | 57 | .Sh NAME |
58 | .Nm ssl | 58 | .Nm ssl |
59 | .Nd OpenSSL SSL/TLS library | 59 | .Nd OpenSSL TLS library |
60 | .Sh DESCRIPTION | 60 | .Sh DESCRIPTION |
61 | The OpenSSL | 61 | The |
62 | .Nm ssl | 62 | .Nm ssl |
63 | library implements the Transport Layer Security (TLS v1) protocols. | 63 | library implements the Transport Layer Security (TLS) protocol, |
64 | the successor to the secure sockets layer (SSL) protocol. | ||
64 | .Pp | 65 | .Pp |
65 | An | 66 | An |
66 | .Vt SSL_CTX | 67 | .Vt SSL_CTX |
@@ -93,7 +94,7 @@ are used to read and write data on the TLS/SSL connection. | |||
93 | .Xr SSL_shutdown 3 | 94 | .Xr SSL_shutdown 3 |
94 | can be used to shut down the TLS/SSL connection. | 95 | can be used to shut down the TLS/SSL connection. |
95 | .Sh DATA STRUCTURES | 96 | .Sh DATA STRUCTURES |
96 | Currently the OpenSSL | 97 | Currently the |
97 | .Nm ssl | 98 | .Nm ssl |
98 | library functions deal with the following data structures: | 99 | library functions deal with the following data structures: |
99 | .Bl -tag -width Ds | 100 | .Bl -tag -width Ds |
@@ -131,7 +132,7 @@ At run-time the application usually deals with this structure which has | |||
131 | links to mostly all other structures. | 132 | links to mostly all other structures. |
132 | .El | 133 | .El |
133 | .Sh HEADER FILES | 134 | .Sh HEADER FILES |
134 | Currently the OpenSSL | 135 | Currently the |
135 | .Nm ssl | 136 | .Nm ssl |
136 | library provides the following C header files containing the prototypes for the | 137 | library provides the following C header files containing the prototypes for the |
137 | data structures and functions: | 138 | data structures and functions: |