diff options
| author | cvs2svn <admin@example.com> | 2015-08-02 21:54:23 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 2015-08-02 21:54:23 +0000 |
| commit | 67fcb4ef3942fb3a0f1e18f8ebbe7464120d485a (patch) | |
| tree | 5609c82060f75c53af0a7641d9b33a88574876cd /src/lib/libssl/doc/SSL_CTX_get_verify_mode.3 | |
| parent | ed40f444ba01bcae1d8540f9c26d79537ab5baf2 (diff) | |
| download | openbsd-libressl-v2.2.2.tar.gz openbsd-libressl-v2.2.2.tar.bz2 openbsd-libressl-v2.2.2.zip | |
This commit was manufactured by cvs2git to create branch 'OPENBSD_5_8'.libressl-v2.2.2
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 | ||
