From: Bodo Möller Date: Thu, 6 Apr 2000 22:30:57 +0000 (+0000) Subject: Clarifications. X-Git-Tag: OpenSSL_0_9_5~68 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=8acdd759b973fa956b33146b5538bfde11ba870c Clarifications. --- diff --git a/doc/apps/ciphers.pod b/doc/apps/ciphers.pod index 2301e28251..21077614a7 100644 --- a/doc/apps/ciphers.pod +++ b/doc/apps/ciphers.pod @@ -25,9 +25,13 @@ the appropriate cipherlist. =item B<-v> -verbose option. List ciphers with a complete description of the authentication, -key exchange, encryption and mac algorithms used along with any key size +verbose option. List ciphers with a complete description of +protocol version (SSLv2 or SSLv3; the latter includes TLS), key exchange, +authentication, encryption and mac algorithms used along with any key size restrictions and whether the algorithm is classed as an "export" cipher. +Note that without the B<-v> option, ciphers may seem to appear twice +in a cipher list; this is when similar ciphers are available for +SSL v2 and for SSL v3/TLS v1. =item B<-ssl3> diff --git a/doc/crypto/BN_mod_mul_montgomery.pod b/doc/crypto/BN_mod_mul_montgomery.pod index 0f0c1375af..b190b4013d 100644 --- a/doc/crypto/BN_mod_mul_montgomery.pod +++ b/doc/crypto/BN_mod_mul_montgomery.pod @@ -49,7 +49,7 @@ the result in B. BN_from_montgomery() performs the Montgomery reduction B = B*R^-1. -BN_to_montgomery() computes Mont(B,R^2). +BN_to_montgomery() computes Mont(B,R^2), i.e. B*R. For all functions, B is a previously allocated B used for temporary variables.