Treewide: Adjust order of includes

This commit is contained in:
Pokechu22
2021-12-09 18:22:16 -08:00
parent 9304fe7124
commit 2025763420
214 changed files with 430 additions and 252 deletions

View File

@ -1,10 +1,10 @@
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include <mbedtls/aes.h>
#include "Common/Crypto/AES.h"
#include <mbedtls/aes.h>
namespace Common::AES
{
std::vector<u8> DecryptEncrypt(const u8* key, u8* iv, const u8* src, size_t size, Mode mode)

View File

@ -1,11 +1,12 @@
// Copyright 2007,2008 Segher Boessenkool <segher@kernel.crashing.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "Common/Crypto/bn.h"
#include <cstdio>
#include <cstring>
#include "Common/CommonTypes.h"
#include "Common/Crypto/bn.h"
static void bn_zero(u8* d, int n)
{

View File

@ -2,11 +2,12 @@
// Copyright 2007,2008 Segher Boessenkool <segher@kernel.crashing.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "Common/Crypto/ec.h"
#include <algorithm>
#include <cstring>
#include "Common/Crypto/bn.h"
#include "Common/Crypto/ec.h"
#include "Common/Inline.h"
#include "Common/Random.h"
#include "Common/StringUtil.h"