diff options
author | schwarze <> | 2016-11-05 15:32:20 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-05 15:32:20 +0000 |
commit | 5af30545c000c195ca6e44f207da004e5780ddb5 (patch) | |
tree | 1672f1234352c29443fcacb44e22f1b20f174d99 /src/lib/libssl/doc/SSL_get_psk_identity.3 | |
parent | ba7c6bac5d2c870a4d1c1ce9f08db5e57c660625 (diff) | |
download | openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.tar.gz openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.tar.bz2 openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.zip |
move manual pages from doc/ to man/ for consistency with other
libraries, in particular considering that there are unrelated
files in doc/; requested by jsing@ and beck@
Diffstat (limited to 'src/lib/libssl/doc/SSL_get_psk_identity.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_get_psk_identity.3 | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/lib/libssl/doc/SSL_get_psk_identity.3 b/src/lib/libssl/doc/SSL_get_psk_identity.3 deleted file mode 100644 index 408555c0ee..0000000000 --- a/src/lib/libssl/doc/SSL_get_psk_identity.3 +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | .\" | ||
2 | .\" $OpenBSD: SSL_get_psk_identity.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ | ||
3 | .\" | ||
4 | .Dd $Mdocdate: December 2 2014 $ | ||
5 | .Dt SSL_GET_PSK_IDENTITY 3 | ||
6 | .Os | ||
7 | .Sh NAME | ||
8 | .Nm SSL_get_psk_identity , | ||
9 | .Nm SSL_get_psk_identity_hint | ||
10 | .Nd get PSK client identity and hint | ||
11 | .Sh SYNOPSIS | ||
12 | .In openssl/ssl.h | ||
13 | .Ft const char * | ||
14 | .Fn SSL_get_psk_identity_hint "const SSL *ssl" | ||
15 | .Ft const char * | ||
16 | .Fn SSL_get_psk_identity "const SSL *ssl" | ||
17 | .Sh DESCRIPTION | ||
18 | .Fn SSL_get_psk_identity_hint | ||
19 | is used to retrieve the PSK identity hint used during the connection setup | ||
20 | related to | ||
21 | .Vt SSL | ||
22 | object | ||
23 | .Fa ssl . | ||
24 | Similarly, | ||
25 | .Fn SSL_get_psk_identity | ||
26 | is used to retrieve the PSK identity used during the connection setup. | ||
27 | .Sh RETURN VALUES | ||
28 | If | ||
29 | .Pf non- Dv NULL , | ||
30 | .Fn SSL_get_psk_identity_hint | ||
31 | returns the PSK identity hint and | ||
32 | .Fn SSL_get_psk_identity | ||
33 | returns the PSK identity. | ||
34 | Both are | ||
35 | .Dv NULL Ns -terminated. | ||
36 | .Fn SSL_get_psk_identity_hint | ||
37 | may return | ||
38 | .Dv NULL | ||
39 | if no PSK identity hint was used during the connection setup. | ||
40 | .Pp | ||
41 | Note that the return value is valid only during the lifetime of the | ||
42 | .Vt SSL | ||
43 | object | ||
44 | .Fa ssl . | ||