1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:07:45 +00:00

LibCrypto: Use nested namespace specifiers in Hash/

This commit is contained in:
Nico Weber 2023-01-04 14:11:12 -05:00 committed by Andreas Kling
parent 27189850d8
commit 1fe3ba17c0
7 changed files with 7 additions and 22 deletions

View file

@ -45,8 +45,7 @@ static constexpr void round_4(u32& a, u32 b, u32 c, u32 d, u32 x, u32 s, u32 ac)
a += b;
}
namespace Crypto {
namespace Hash {
namespace Crypto::Hash {
void MD5::update(u8 const* input, size_t length)
{
@ -204,4 +203,3 @@ void MD5::transform(u8 const* block)
}
}
}