diff options
author | jmc <> | 2016-11-25 16:34:08 +0000 |
---|---|---|
committer | jmc <> | 2016-11-25 16:34:08 +0000 |
commit | aba3adbd7238bc32c17777b16e6e98cb93b7dc74 (patch) | |
tree | 6e63a82b923d84825793f9af8a1d11d494b76af8 | |
parent | 7202341c67bf9540414b1bb3d732e66d2a7489cf (diff) | |
download | openbsd-aba3adbd7238bc32c17777b16e6e98cb93b7dc74.tar.gz openbsd-aba3adbd7238bc32c17777b16e6e98cb93b7dc74.tar.bz2 openbsd-aba3adbd7238bc32c17777b16e6e98cb93b7dc74.zip |
various minor cleanup;
-rw-r--r-- | src/lib/libcrypto/man/RAND_add.3 | 10 | ||||
-rw-r--r-- | src/lib/libcrypto/man/RAND_load_file.3 | 10 | ||||
-rw-r--r-- | src/lib/libcrypto/man/RC4.3 | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/man/RIPEMD160.3 | 6 |
4 files changed, 17 insertions, 17 deletions
diff --git a/src/lib/libcrypto/man/RAND_add.3 b/src/lib/libcrypto/man/RAND_add.3 index 54a2328bb4..7137218cdc 100644 --- a/src/lib/libcrypto/man/RAND_add.3 +++ b/src/lib/libcrypto/man/RAND_add.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: RAND_add.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: RAND_add.3,v 1.3 2016/11/25 16:34:08 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 25 2016 $ |
4 | .Dt RAND_ADD 3 | 4 | .Dt RAND_ADD 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
@@ -11,15 +11,15 @@ | |||
11 | .Sh SYNOPSIS | 11 | .Sh SYNOPSIS |
12 | .In openssl/rand.h | 12 | .In openssl/rand.h |
13 | .Ft void | 13 | .Ft void |
14 | .Fo RAND_seed | 14 | .Fo RAND_add |
15 | .Fa "const void *buf" | 15 | .Fa "const void *buf" |
16 | .Fa "int num" | 16 | .Fa "int num" |
17 | .Fa "double entropy" | ||
17 | .Fc | 18 | .Fc |
18 | .Ft void | 19 | .Ft void |
19 | .Fo RAND_add | 20 | .Fo RAND_seed |
20 | .Fa "const void *buf" | 21 | .Fa "const void *buf" |
21 | .Fa "int num" | 22 | .Fa "int num" |
22 | .Fa "double entropy" | ||
23 | .Fc | 23 | .Fc |
24 | .Ft int | 24 | .Ft int |
25 | .Fn RAND_status void | 25 | .Fn RAND_status void |
diff --git a/src/lib/libcrypto/man/RAND_load_file.3 b/src/lib/libcrypto/man/RAND_load_file.3 index 003196b59f..8067b796b3 100644 --- a/src/lib/libcrypto/man/RAND_load_file.3 +++ b/src/lib/libcrypto/man/RAND_load_file.3 | |||
@@ -1,12 +1,12 @@ | |||
1 | .\" $OpenBSD: RAND_load_file.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: RAND_load_file.3,v 1.3 2016/11/25 16:34:08 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 25 2016 $ |
4 | .Dt RAND_LOAD_FILE 3 | 4 | .Dt RAND_LOAD_FILE 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
7 | .Nm RAND_file_name , | ||
7 | .Nm RAND_load_file , | 8 | .Nm RAND_load_file , |
8 | .Nm RAND_write_file , | 9 | .Nm RAND_write_file |
9 | .Nm RAND_file_name | ||
10 | .Nd PRNG seed file | 10 | .Nd PRNG seed file |
11 | .Sh SYNOPSIS | 11 | .Sh SYNOPSIS |
12 | .In openssl/rand.h | 12 | .In openssl/rand.h |
@@ -40,7 +40,7 @@ used to allow for the state of the random number generator to be | |||
40 | controlled by external sources. | 40 | controlled by external sources. |
41 | .Pp | 41 | .Pp |
42 | It is kept for ABI compatibility but is no longer functional, and should | 42 | It is kept for ABI compatibility but is no longer functional, and should |
43 | not used in new programs. | 43 | not be used in new programs. |
44 | .Pp | 44 | .Pp |
45 | .Fn RAND_write_file | 45 | .Fn RAND_write_file |
46 | writes a number of random bytes (currently 1024) to file | 46 | writes a number of random bytes (currently 1024) to file |
diff --git a/src/lib/libcrypto/man/RC4.3 b/src/lib/libcrypto/man/RC4.3 index 60df7792cb..cefd8d83ff 100644 --- a/src/lib/libcrypto/man/RC4.3 +++ b/src/lib/libcrypto/man/RC4.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: RC4.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: RC4.3,v 1.3 2016/11/25 16:34:08 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 25 2016 $ |
4 | .Dt RC4 3 | 4 | .Dt RC4 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
@@ -25,12 +25,12 @@ | |||
25 | .Sh DESCRIPTION | 25 | .Sh DESCRIPTION |
26 | This library implements the alleged RC4 cipher, which is described for | 26 | This library implements the alleged RC4 cipher, which is described for |
27 | example in | 27 | example in |
28 | .%B Applied Cryptography . | 28 | .Qq Applied Cryptography . |
29 | It is believed to be compatible with RC4[TM], a proprietary cipher of | 29 | It is believed to be compatible with RC4[TM], a proprietary cipher of |
30 | RSA Security Inc. | 30 | RSA Security Inc. |
31 | .Pp | 31 | .Pp |
32 | RC4 is a stream cipher with variable key length. | 32 | RC4 is a stream cipher with variable key length. |
33 | Typically, 128 bit (16 byte) keys are used for strong encryption, but | 33 | Typically, 128-bit (16-byte) keys are used for strong encryption, but |
34 | shorter insecure key sizes have been widely used due to export | 34 | shorter insecure key sizes have been widely used due to export |
35 | restrictions. | 35 | restrictions. |
36 | .Pp | 36 | .Pp |
diff --git a/src/lib/libcrypto/man/RIPEMD160.3 b/src/lib/libcrypto/man/RIPEMD160.3 index ac86f82ef6..0e58c443c3 100644 --- a/src/lib/libcrypto/man/RIPEMD160.3 +++ b/src/lib/libcrypto/man/RIPEMD160.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: RIPEMD160.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: RIPEMD160.3,v 1.3 2016/11/25 16:34:08 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 25 2016 $ |
4 | .Dt RIPEMD160 3 | 4 | .Dt RIPEMD160 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
@@ -33,7 +33,7 @@ | |||
33 | .Fa "RIPEMD160_CTX *c" | 33 | .Fa "RIPEMD160_CTX *c" |
34 | .Fc | 34 | .Fc |
35 | .Sh DESCRIPTION | 35 | .Sh DESCRIPTION |
36 | RIPEMD-160 is a cryptographic hash function with a 160 bit output. | 36 | RIPEMD-160 is a cryptographic hash function with a 160-bit output. |
37 | .Pp | 37 | .Pp |
38 | .Fn RIPEMD160 | 38 | .Fn RIPEMD160 |
39 | computes the RIPEMD-160 message digest of the | 39 | computes the RIPEMD-160 message digest of the |