2
0
Ugochukwu Mmaduekwe 7 жил өмнө
parent
commit
811d3267b3

+ 5 - 4
CryptoLib/src/Math/EC/Multiplier/ClpFixedPointUtilities.pas

@@ -116,13 +116,14 @@ begin
       pow2Table[i] := pow2Table[i - 1].TimesPow2(d);
     end;
 
-    raise Exception.Create(pow2Table[0].ToString + ' DABA ' + pow2Table[1]
-      .ToString + ' DABA ' + pow2Table[2].ToString + ' DABA ' + pow2Table[3]
-      .ToString + ' DABA ' + pow2Table[4].ToString);
-
     // This will be the 'offset' value
     pow2Table[minWidth] := pow2Table[0].Subtract(pow2Table[1]);
 
+    raise Exception.Create(pow2Table[0].ToString + ' DABA ' + pow2Table[1]
+      .ToString + ' DABA ' + pow2Table[2].ToString + ' DABA ' + pow2Table[3]
+      .ToString + ' DABA ' + pow2Table[4].ToString + ' DABA ' + pow2Table[5]
+      .ToString);
+
     c.NormalizeAll(pow2Table);
 
     System.SetLength(lookupTable, n);