From 34f8d55100488d02ad28779bf6cffde4831d184e Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Thu, 29 Oct 2020 15:58:25 +0330 Subject: [PATCH] LibCrypto: Remove spammy ModPow debug log --- Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp b/Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp index 0e69e0425b..92d0bd90f6 100644 --- a/Libraries/LibCrypto/NumberTheory/ModularFunctions.cpp +++ b/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);