mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-02 13:26:24 +12:00
Some checks failed
Android Build / x64 (release) (push) Has been cancelled
Android Build / arm64 (release) (push) Has been cancelled
HTTP Server Build / build (push) Has been cancelled
Hydra Core Build / Windows (push) Has been cancelled
Hydra Core Build / MacOS (push) Has been cancelled
Hydra Core Build / Linux (push) Has been cancelled
Hydra Core Build / Android-x64 (push) Has been cancelled
Hydra Core Build / ARM-Libretro (push) Has been cancelled
Linux AppImage Build / build (push) Has been cancelled
Linux Build / build (push) Has been cancelled
MacOS Build / MacOS-arm64 (push) Has been cancelled
MacOS Build / MacOS-x86_64 (push) Has been cancelled
MacOS Build / MacOS-Universal (push) Has been cancelled
Qt Build / Windows (push) Has been cancelled
Qt Build / MacOS-arm64 (push) Has been cancelled
Qt Build / MacOS-x86_64 (push) Has been cancelled
Qt Build / MacOS-Universal (push) Has been cancelled
Qt Build / Linux (push) Has been cancelled
Windows Build / build (push) Has been cancelled
iOS Simulator Build / build (push) Has been cancelled
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
// aes.h - originally written and placed in the public domain by Wei Dai
|
|
|
|
/// \file
|
|
/// \brief Class file for the AES cipher (Rijndael)
|
|
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
|
|
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
|
|
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
|
|
/// Power8 AES since Crypto++ 6.0
|
|
|
|
#ifndef CRYPTOPP_AES_H
|
|
#define CRYPTOPP_AES_H
|
|
|
|
#include "rijndael.h"
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
/// \brief AES block cipher (Rijndael)
|
|
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
|
|
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
|
|
/// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
|
|
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
|
|
/// Power8 AES since Crypto++ 6.0
|
|
DOCUMENTED_TYPEDEF(Rijndael, AES);
|
|
|
|
typedef RijndaelEncryption AESEncryption;
|
|
typedef RijndaelDecryption AESDecryption;
|
|
|
|
NAMESPACE_END
|
|
|
|
#endif
|