Browse Source

minor cleanup

Ugochukwu Mmaduekwe 8 years ago
parent
commit
b49102f372
1 changed files with 0 additions and 5 deletions
  1. 0 5
      CryptoLib/src/Math/ClpBigInteger.pas

+ 0 - 5
CryptoLib/src/Math/ClpBigInteger.pas

@@ -3388,7 +3388,6 @@ begin
 
 
   // let n = 1 + d . 2^s
   // let n = 1 + d . 2^s
   n := Self;
   n := Self;
-  // n := TBigInteger.Create('18129193193421409391');
   shiftval := Int32(-1) shl 1; // -2
   shiftval := Int32(-1) shl 1; // -2
   s := n.GetLowestSetBitMaskFirst(shiftval);
   s := n.GetLowestSetBitMaskFirst(shiftval);
 {$IFDEF DEBUG}
 {$IFDEF DEBUG}
@@ -3408,10 +3407,6 @@ begin
     until (not((a.Fsign = 0) or (a.CompareTo(n) >= 0) or
     until (not((a.Fsign = 0) or (a.CompareTo(n) >= 0) or
       (a.IsEqualMagnitude(montRadix)) or (a.IsEqualMagnitude(minusMontRadix))));
       (a.IsEqualMagnitude(montRadix)) or (a.IsEqualMagnitude(minusMontRadix))));
 
 
-    // a := TBigInteger.Create('2241721637801439371');
-    // r := TBigInteger.Create('3566581514692115955');
-    // n := TBigInteger.Create('14266326058768463821');
-
     y := ModPowMonty(a, r, n, false);
     y := ModPowMonty(a, r, n, false);
 
 
     if (not y.Equals(montRadix)) then
     if (not y.Equals(montRadix)) then