diff options
Diffstat (limited to 'src/lib/libcrypto/man')
| -rw-r--r-- | src/lib/libcrypto/man/RC4.3 | 9 | ||||
| -rw-r--r-- | src/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 | 7 | ||||
| -rw-r--r-- | src/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 | 9 | ||||
| -rw-r--r-- | src/lib/libcrypto/man/lh_stats.3 | 6 |
4 files changed, 8 insertions, 23 deletions
diff --git a/src/lib/libcrypto/man/RC4.3 b/src/lib/libcrypto/man/RC4.3 index 285ef47755..8b20a434b7 100644 --- a/src/lib/libcrypto/man/RC4.3 +++ b/src/lib/libcrypto/man/RC4.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: RC4.3,v 1.7 2019/06/06 01:06:59 schwarze Exp $ | 1 | .\" $OpenBSD: RC4.3,v 1.8 2020/03/29 17:05:02 schwarze Exp $ |
| 2 | .\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 | 2 | .\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 |
| 3 | .\" | 3 | .\" |
| 4 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. | 4 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. |
| @@ -48,7 +48,7 @@ | |||
| 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
| 50 | .\" | 50 | .\" |
| 51 | .Dd $Mdocdate: June 6 2019 $ | 51 | .Dd $Mdocdate: March 29 2020 $ |
| 52 | .Dt RC4 3 | 52 | .Dt RC4 3 |
| 53 | .Os | 53 | .Os |
| 54 | .Sh NAME | 54 | .Sh NAME |
| @@ -112,11 +112,6 @@ yield a continuous key stream. | |||
| 112 | Since RC4 is a stream cipher (the input is XOR'ed with a pseudo-random | 112 | Since RC4 is a stream cipher (the input is XOR'ed with a pseudo-random |
| 113 | key stream to produce the output), decryption uses the same function | 113 | key stream to produce the output), decryption uses the same function |
| 114 | calls as encryption. | 114 | calls as encryption. |
| 115 | .Sh RETURN VALUES | ||
| 116 | .Fn RC4_set_key | ||
| 117 | and | ||
| 118 | .Fn RC4 | ||
| 119 | do not return values. | ||
| 120 | .Sh SEE ALSO | 115 | .Sh SEE ALSO |
| 121 | .Xr blowfish 3 , | 116 | .Xr blowfish 3 , |
| 122 | .Xr EVP_EncryptInit 3 , | 117 | .Xr EVP_EncryptInit 3 , |
diff --git a/src/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 b/src/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 index 0af222fbea..5a4bb3338a 100644 --- a/src/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 +++ b/src/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: X509_STORE_CTX_set_verify_cb.3,v 1.4 2018/03/22 17:38:08 schwarze Exp $ | 1 | .\" $OpenBSD: X509_STORE_CTX_set_verify_cb.3,v 1.5 2020/03/29 17:05:02 schwarze Exp $ |
| 2 | .\" OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400 | 2 | .\" OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400 |
| 3 | .\" | 3 | .\" |
| 4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. | 4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. |
| @@ -48,7 +48,7 @@ | |||
| 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
| 50 | .\" | 50 | .\" |
| 51 | .Dd $Mdocdate: March 22 2018 $ | 51 | .Dd $Mdocdate: March 29 2020 $ |
| 52 | .Dt X509_STORE_CTX_SET_VERIFY_CB 3 | 52 | .Dt X509_STORE_CTX_SET_VERIFY_CB 3 |
| 53 | .Os | 53 | .Os |
| 54 | .Sh NAME | 54 | .Sh NAME |
| @@ -108,9 +108,6 @@ In some cases (such as S/MIME verification) the | |||
| 108 | structure is created and destroyed internally and the only way to set a | 108 | structure is created and destroyed internally and the only way to set a |
| 109 | custom verification callback is by inheriting it from the associated | 109 | custom verification callback is by inheriting it from the associated |
| 110 | .Vt X509_STORE . | 110 | .Vt X509_STORE . |
| 111 | .Sh RETURN VALUES | ||
| 112 | .Fn X509_STORE_CTX_set_verify_cb | ||
| 113 | does not return a value. | ||
| 114 | .Sh EXAMPLES | 111 | .Sh EXAMPLES |
| 115 | Default callback operation: | 112 | Default callback operation: |
| 116 | .Bd -literal | 113 | .Bd -literal |
diff --git a/src/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 b/src/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 index 16f1fac2ec..052c28b6a8 100644 --- a/src/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 +++ b/src/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: X509_STORE_set_verify_cb_func.3,v 1.8 2018/03/27 17:35:50 schwarze Exp $ | 1 | .\" $OpenBSD: X509_STORE_set_verify_cb_func.3,v 1.9 2020/03/29 17:05:02 schwarze Exp $ |
| 2 | .\" OpenSSL 05ea606a May 20 20:52:46 2016 -0400 | 2 | .\" OpenSSL 05ea606a May 20 20:52:46 2016 -0400 |
| 3 | .\" | 3 | .\" |
| 4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. | 4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. |
| @@ -48,7 +48,7 @@ | |||
| 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
| 50 | .\" | 50 | .\" |
| 51 | .Dd $Mdocdate: March 27 2018 $ | 51 | .Dd $Mdocdate: March 29 2020 $ |
| 52 | .Dt X509_STORE_SET_VERIFY_CB_FUNC 3 | 52 | .Dt X509_STORE_SET_VERIFY_CB_FUNC 3 |
| 53 | .Os | 53 | .Os |
| 54 | .Sh NAME | 54 | .Sh NAME |
| @@ -86,11 +86,6 @@ structure when it is initialized. | |||
| 86 | This can be used to set the verification callback when the | 86 | This can be used to set the verification callback when the |
| 87 | .Vt X509_STORE_CTX | 87 | .Vt X509_STORE_CTX |
| 88 | is otherwise inaccessible (for example during S/MIME verification). | 88 | is otherwise inaccessible (for example during S/MIME verification). |
| 89 | .Sh RETURN VALUES | ||
| 90 | .Fn X509_STORE_set_verify_cb | ||
| 91 | and | ||
| 92 | .Fn X509_STORE_set_verify_cb_func | ||
| 93 | do not return a value. | ||
| 94 | .Sh SEE ALSO | 89 | .Sh SEE ALSO |
| 95 | .Xr X509_STORE_CTX_set_verify_cb 3 , | 90 | .Xr X509_STORE_CTX_set_verify_cb 3 , |
| 96 | .Xr X509_STORE_new 3 | 91 | .Xr X509_STORE_new 3 |
diff --git a/src/lib/libcrypto/man/lh_stats.3 b/src/lib/libcrypto/man/lh_stats.3 index e057d7d65e..5041721fe1 100644 --- a/src/lib/libcrypto/man/lh_stats.3 +++ b/src/lib/libcrypto/man/lh_stats.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: lh_stats.3,v 1.6 2018/03/27 17:35:50 schwarze Exp $ | 1 | .\" $OpenBSD: lh_stats.3,v 1.7 2020/03/29 17:05:02 schwarze Exp $ |
| 2 | .\" OpenSSL e2f92610 May 18 11:44:05 2016 -0400 | 2 | .\" OpenSSL e2f92610 May 18 11:44:05 2016 -0400 |
| 3 | .\" | 3 | .\" |
| 4 | .\" -------------------------------------------------------------------------- | 4 | .\" -------------------------------------------------------------------------- |
| @@ -113,7 +113,7 @@ | |||
| 113 | .\" copied and put under another distribution licence | 113 | .\" copied and put under another distribution licence |
| 114 | .\" [including the GNU Public Licence.] | 114 | .\" [including the GNU Public Licence.] |
| 115 | .\" | 115 | .\" |
| 116 | .Dd $Mdocdate: March 27 2018 $ | 116 | .Dd $Mdocdate: March 29 2020 $ |
| 117 | .Dt LH_STATS 3 | 117 | .Dt LH_STATS 3 |
| 118 | .Os | 118 | .Os |
| 119 | .Sh NAME | 119 | .Sh NAME |
| @@ -187,8 +187,6 @@ and | |||
| 187 | .Fn lh_node_usage_stats_bio | 187 | .Fn lh_node_usage_stats_bio |
| 188 | are the same as the above, except that the output goes to a | 188 | are the same as the above, except that the output goes to a |
| 189 | .Vt BIO . | 189 | .Vt BIO . |
| 190 | .Sh RETURN VALUES | ||
| 191 | These functions do not return values. | ||
| 192 | .Sh SEE ALSO | 190 | .Sh SEE ALSO |
| 193 | .Xr BIO_new 3 , | 191 | .Xr BIO_new 3 , |
| 194 | .Xr lh_new 3 | 192 | .Xr lh_new 3 |
