New cipher Noekeon added.
[u/mdw/catacomb] / tests / mpint
index d0c9667..771ea0d 100644 (file)
@@ -1,6 +1,6 @@
 # Test vectors for conversion between MP ints and C ints
 #
-# $Id: mpint,v 1.1 1999/11/25 11:38:33 mdw Exp $
+# $Id: mpint,v 1.3 2000/07/09 21:33:54 mdw Exp $
 
 # The tests look messy because I'm fighting with atoi here as well as the
 # integer conversion routines I'm trying to test.
@@ -10,7 +10,7 @@ fromuint {
   1 1;
   -5 0xfffffffb;
   0x7fffffff 0x7fffffff;
-  -0x80000000 0x80000000;              # Bastard torture test
+  0x80000000 0x80000000;               # Bastard torture test
 }
 
 fromint {
@@ -36,4 +36,3 @@ toint {
   0x7fffffff 0x7fffffff;
   -0x80000000 -0x80000000;             # Bastard torture test
 }
-