Преглед изворни кода

LibCrypto: Remove spammy ModPow debug log

AnotherTest пре 4 година
родитељ
комит
34f8d55100
1 измењених фајлова са 0 додато и 3 уклоњено
  1. 0 3
      Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp

+ 0 - 3
Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp

@@ -134,9 +134,6 @@ UnsignedBigInteger ModularPower(const UnsignedBigInteger& b, const UnsignedBigIn
     UnsignedBigInteger temp_remainder;
 
     while (!(ep < 1)) {
-#ifdef NT_DEBUG
-        dbg() << ep.to_base10();
-#endif
         if (ep.words()[0] % 2 == 1) {
             // exp = (exp * base) % m;
             UnsignedBigInteger::multiply_without_allocation(exp, base, temp_1, temp_2, temp_3, temp_4, temp_multiply);