consistency
authorBodo Möller <bodo@openssl.org>
Fri, 24 Jan 2003 22:27:00 +0000 (22:27 +0000)
committerBodo Möller <bodo@openssl.org>
Fri, 24 Jan 2003 22:27:00 +0000 (22:27 +0000)
CHANGES
config
crypto/bn/bn_lcl.h

diff --git a/CHANGES b/CHANGES
index e96767092f691bb9914e8d56dbe64ca79805d40d..92d95f203f227b09ff646c1ade2302ef6937f35a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1707,6 +1707,11 @@ des-cbc           3624.96k     5258.21k     5530.91k     5624.30k     5628.26k
      be reduced modulo  m.
      [Lenka Fibikova <fibikova@exp-math.uni-essen.de>, Bodo Moeller]
 
+#if 0
+     The following entry accidentily appeared in the CHANGES file
+     distributed with OpenSSL 0.9.7.  The modifications described in
+     it do *not* apply to OpenSSL 0.9.7.
+
   *) Remove a few calls to bn_wexpand() in BN_sqr() (the one in there
      was actually never needed) and in BN_mul().  The removal in BN_mul()
      required a small change in bn_mul_part_recursive() and the addition
@@ -1715,6 +1720,7 @@ des-cbc           3624.96k     5258.21k     5530.91k     5624.30k     5628.26k
      bn_sub_words() and bn_add_words() except they take arrays with
      differing sizes.
      [Richard Levitte]
+#endif
 
   *) In 'openssl passwd', verify passwords read from the terminal
      unless the '-salt' option is used (which usually means that
diff --git a/config b/config
index 565ec0fc3c271d873a1de07bc719012f94399e32..8ab63fa8c72f4e629f8cded0da5e63a5cb2ff41e 100755 (executable)
--- a/config
+++ b/config
@@ -547,7 +547,7 @@ EOF
   ppc-apple-darwin*) OUT="darwin-ppc-cc" ;;
   i386-apple-darwin*) OUT="darwin-i386-cc" ;;
   sparc64-*-linux2)
-       echo "WARNING! If *know* that your GNU C supports 64-bit/V9 ABI"
+       echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
        echo "         and wish to build 64-bit library, then you have to"
        echo "         invoke './Configure linux64-sparcv9' *manually*."
        if [ "$TEST" = "false" ]; then
index bf7c12403c35ba90a8fe0a718f9548f84650d249..5614bc6164cfa0cee9c4dfc5f55d0c79c9255e13 100644 (file)
@@ -446,10 +446,6 @@ void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
        BN_ULONG *t);
 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
        BN_ULONG *t);
-BN_ULONG bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
-       int cl, int dl);
-BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
-       int cl, int dl);
 
 #ifdef  __cplusplus
 }