Everywhere: Use nested namespace qualifiers

This commit is contained in:
Nico Weber
2023-07-11 13:49:08 -04:00
committed by Ali Mohammad Pur
parent a2f33fdcef
commit 66e210e406
Notes: sideshowbarker 2024-07-16 22:51:10 +09:00
27 changed files with 30 additions and 91 deletions

View File

@@ -8,8 +8,7 @@
#include <LibCrypto/BigInt/Algorithms/UnsignedBigIntegerAlgorithms.h>
#include <LibCrypto/NumberTheory/ModularFunctions.h>
namespace Crypto {
namespace NumberTheory {
namespace Crypto::NumberTheory {
UnsignedBigInteger ModularInverse(UnsignedBigInteger const& a_, UnsignedBigInteger const& b)
{
@@ -232,4 +231,3 @@ UnsignedBigInteger random_big_prime(size_t bits)
}
}
}