diff options
author | Tim Hudson <tjh@openssl.org> | 2014-07-21 20:03:50 +1000 |
---|---|---|
committer | Janusz Kozerski <j.kozerski@samsung.com> | 2014-10-20 15:25:31 +0200 |
commit | af66ab49cd1973ea72b5b56c2d019c89cd688c12 (patch) | |
tree | c7ba58b900f8b1569559a9a67e9070818cbe9aa2 /doc | |
parent | 39a5a2df43b1893f61ec8e23a58fafd69cbce854 (diff) | |
download | openssl-af66ab49cd1973ea72b5b56c2d019c89cd688c12.tar.gz openssl-af66ab49cd1973ea72b5b56c2d019c89cd688c12.tar.bz2 openssl-af66ab49cd1973ea72b5b56c2d019c89cd688c12.zip |
Minor documentation update removing "really" and a
statement of opinion rather than a fact.
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit c8d133e4b6f1ed1b7ad3c1a6d2c62f460e26c050)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/crypto/des.pod | 7 | ||||
-rw-r--r-- | doc/crypto/ui.pod | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/doc/crypto/des.pod b/doc/crypto/des.pod index 6f0cf1c..e1add56 100644 --- a/doc/crypto/des.pod +++ b/doc/crypto/des.pod @@ -135,9 +135,8 @@ depend on a global variable. DES_set_odd_parity() sets the parity of the passed I<key> to odd. -DES_is_weak_key() returns 1 is the passed key is a weak key, 0 if it -is ok. The probability that a randomly generated key is weak is -1/2^52, so it is not really worth checking for them. +DES_is_weak_key() returns 1 if the passed key is a weak key, 0 if it +is ok. The following routines mostly operate on an input and output stream of I<DES_cblock>s. @@ -181,7 +180,7 @@ of 24 bytes. This is much better than CBC DES. DES_ede3_cbc_encrypt() implements outer triple CBC DES encryption with three keys. This means that each DES operation inside the CBC mode is -really an C<C=E(ks3,D(ks2,E(ks1,M)))>. This mode is used by SSL. +an C<C=E(ks3,D(ks2,E(ks1,M)))>. This mode is used by SSL. The DES_ede2_cbc_encrypt() macro implements two-key Triple-DES by reusing I<ks1> for the final encryption. C<C=E(ks1,D(ks2,E(ks1,M)))>. diff --git a/doc/crypto/ui.pod b/doc/crypto/ui.pod index 6df68d6..04f8e9c 100644 --- a/doc/crypto/ui.pod +++ b/doc/crypto/ui.pod @@ -119,7 +119,7 @@ verification will fail. UI_add_input_boolean() adds a prompt to the UI that's supposed to be answered in a boolean way, with a single character for yes and a different character for no. A set of characters that can be used to cancel the prompt is given -as well. The prompt itself is really divided in two, one part being the +as well. The prompt itself is divided in two, one part being the descriptive text (given through the I<prompt> argument) and one describing the possible answers (given through the I<action_desc> argument). |