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_CTX_get_verify_mode.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_CTX_get_verify_mode.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_CTX_get_verify_mode.3 | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/src/lib/libssl/doc/SSL_CTX_get_verify_mode.3 b/src/lib/libssl/doc/SSL_CTX_get_verify_mode.3 deleted file mode 100644 index 12e21db6a3..0000000000 --- a/src/lib/libssl/doc/SSL_CTX_get_verify_mode.3 +++ /dev/null | |||
@@ -1,73 +0,0 @@ | |||
1 | .\" | ||
2 | .\" $OpenBSD: SSL_CTX_get_verify_mode.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ | ||
3 | .\" | ||
4 | .Dd $Mdocdate: December 2 2014 $ | ||
5 | .Dt SSL_CTX_GET_VERIFY_MODE 3 | ||
6 | .Os | ||
7 | .Sh NAME | ||
8 | .Nm SSL_CTX_get_verify_mode , | ||
9 | .Nm SSL_get_verify_mode , | ||
10 | .Nm SSL_CTX_get_verify_depth , | ||
11 | .Nm SSL_get_verify_depth , | ||
12 | .Nm SSL_get_verify_callback , | ||
13 | .Nm SSL_CTX_get_verify_callback | ||
14 | .Nd get currently set verification parameters | ||
15 | .Sh SYNOPSIS | ||
16 | .In openssl/ssl.h | ||
17 | .Ft int | ||
18 | .Fn SSL_CTX_get_verify_mode "const SSL_CTX *ctx" | ||
19 | .Ft int | ||
20 | .Fn SSL_get_verify_mode "const SSL *ssl" | ||
21 | .Ft int | ||
22 | .Fn SSL_CTX_get_verify_depth "const SSL_CTX *ctx" | ||
23 | .Ft int | ||
24 | .Fn SSL_get_verify_depth "const SSL *ssl" | ||
25 | .Ft int | ||
26 | .Fo "(*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))" | ||
27 | .Fa int "X509_STORE_CTX *" | ||
28 | .Fc | ||
29 | .Ft int | ||
30 | .Fo "(*SSL_get_verify_callback(const SSL *ssl))" | ||
31 | .Fa int "X509_STORE_CTX *" | ||
32 | .Fc | ||
33 | .Sh DESCRIPTION | ||
34 | .Fn SSL_CTX_get_verify_mode | ||
35 | returns the verification mode currently set in | ||
36 | .Fa ctx . | ||
37 | .Pp | ||
38 | .Fn SSL_get_verify_mode | ||
39 | returns the verification mode currently set in | ||
40 | .Fa ssl . | ||
41 | .Pp | ||
42 | .Fn SSL_CTX_get_verify_depth | ||
43 | returns the verification depth limit currently set | ||
44 | in | ||
45 | .Fa ctx . | ||
46 | If no limit has been explicitly set, | ||
47 | \(mi1 is returned and the default value will be used. | ||
48 | .Pp | ||
49 | .Fn SSL_get_verify_depth | ||
50 | returns the verification depth limit currently set in | ||
51 | .Fa ssl . | ||
52 | If no limit has been explicitly set, | ||
53 | \(mi1 is returned and the default value will be used. | ||
54 | .Pp | ||
55 | .Fn SSL_CTX_get_verify_callback | ||
56 | returns a function pointer to the verification callback currently set in | ||
57 | .Fa ctx . | ||
58 | If no callback was explicitly set, the | ||
59 | .Dv NULL | ||
60 | pointer is returned and the default callback will be used. | ||
61 | .Pp | ||
62 | .Fn SSL_get_verify_callback | ||
63 | returns a function pointer to the verification callback currently set in | ||
64 | .Fa ssl . | ||
65 | If no callback was explicitly set, the | ||
66 | .Dv NULL | ||
67 | pointer is returned and the default callback will be used. | ||
68 | .Sh RETURN VALUES | ||
69 | See | ||
70 | .Sx DESCRIPTION | ||
71 | .Sh SEE ALSO | ||
72 | .Xr ssl 3 , | ||
73 | .Xr SSL_CTX_set_verify 3 | ||