mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Common: Use nested namespace specifiers where applicable
This commit is contained in:
parent
32bacfa4bd
commit
8e030a4a45
2 changed files with 4 additions and 10 deletions
|
@ -6,9 +6,7 @@
|
|||
|
||||
#include "Common/Crypto/AES.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
namespace AES
|
||||
namespace Common::AES
|
||||
{
|
||||
std::vector<u8> DecryptEncrypt(const u8* key, u8* iv, const u8* src, size_t size, Mode mode)
|
||||
{
|
||||
|
@ -35,5 +33,4 @@ std::vector<u8> Encrypt(const u8* key, u8* iv, const u8* src, size_t size)
|
|||
{
|
||||
return DecryptEncrypt(key, iv, src, size, Mode::Encrypt);
|
||||
}
|
||||
} // namespace AES
|
||||
} // namespace Common
|
||||
} // namespace Common::AES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue