mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
LibCrypto: Remove spammy ModPow debug log
This commit is contained in:
parent
1746e6f9ca
commit
34f8d55100
Notes:
sideshowbarker
2024-07-19 01:37:50 +09:00
Author: https://github.com/alimpfard
Commit: 34f8d55100
Pull-request: https://github.com/SerenityOS/serenity/pull/3867
Reviewed-by: https://github.com/awesomekling
1 changed files with 0 additions and 3 deletions
|
@ -134,9 +134,6 @@ UnsignedBigInteger ModularPower(const UnsignedBigInteger& b, const UnsignedBigIn
|
||||||
UnsignedBigInteger temp_remainder;
|
UnsignedBigInteger temp_remainder;
|
||||||
|
|
||||||
while (!(ep < 1)) {
|
while (!(ep < 1)) {
|
||||||
#ifdef NT_DEBUG
|
|
||||||
dbg() << ep.to_base10();
|
|
||||||
#endif
|
|
||||||
if (ep.words()[0] % 2 == 1) {
|
if (ep.words()[0] % 2 == 1) {
|
||||||
// exp = (exp * base) % m;
|
// exp = (exp * base) % m;
|
||||||
UnsignedBigInteger::multiply_without_allocation(exp, base, temp_1, temp_2, temp_3, temp_4, temp_multiply);
|
UnsignedBigInteger::multiply_without_allocation(exp, base, temp_1, temp_2, temp_3, temp_4, temp_multiply);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue