2017-01-01 14:58:02 +02:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/hw/aes/key.h"
|
|
|
|
|
|
|
|
namespace HW {
|
|
|
|
namespace AES {
|
|
|
|
AESKey Lrot128(const AESKey& in, u32 rot);
|
|
|
|
AESKey Add128(const AESKey& a, const AESKey& b);
|
|
|
|
AESKey Xor128(const AESKey& a, const AESKey& b);
|
|
|
|
|
2018-03-09 10:54:43 -07:00
|
|
|
} // namespace AES
|
2017-01-01 14:58:02 +02:00
|
|
|
} // namespace HW
|