mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
85 lines
2.4 KiB
C
85 lines
2.4 KiB
C
/**
|
|
* @file crypto.h
|
|
* @brief Declaration of the cryptography library
|
|
*/
|
|
#pragma once
|
|
#include <tc/types.h>
|
|
#include <tc/Exception.h>
|
|
|
|
/**
|
|
* @namespace tc::crypto
|
|
* @brief Namespace of the cryptography library
|
|
*/
|
|
// Exceptions
|
|
#include <tc/crypto/CryptoException.h>
|
|
|
|
// AES Encryption & Modes
|
|
#include <tc/crypto/AesEncryptor.h>
|
|
|
|
#include <tc/crypto/EcbEncryptor.h>
|
|
#include <tc/crypto/Aes128EcbEncryptor.h>
|
|
#include <tc/crypto/Aes192EcbEncryptor.h>
|
|
#include <tc/crypto/Aes256EcbEncryptor.h>
|
|
|
|
#include <tc/crypto/CtrEncryptor.h>
|
|
#include <tc/crypto/Aes128CtrEncryptor.h>
|
|
#include <tc/crypto/Aes192CtrEncryptor.h>
|
|
#include <tc/crypto/Aes256CtrEncryptor.h>
|
|
|
|
#include <tc/crypto/CbcEncryptor.h>
|
|
#include <tc/crypto/Aes128CbcEncryptor.h>
|
|
#include <tc/crypto/Aes192CbcEncryptor.h>
|
|
#include <tc/crypto/Aes256CbcEncryptor.h>
|
|
|
|
#include <tc/crypto/XtsEncryptor.h>
|
|
#include <tc/crypto/Aes128XtsEncryptor.h>
|
|
#include <tc/crypto/Aes256XtsEncryptor.h>
|
|
|
|
// AES Encryption Streams
|
|
#include <tc/crypto/Aes128CtrEncryptedStream.h>
|
|
#include <tc/crypto/Aes128CbcEncryptedStream.h>
|
|
|
|
|
|
// Hash Calculator
|
|
#include <tc/crypto/Md5Generator.h>
|
|
#include <tc/crypto/Sha1Generator.h>
|
|
#include <tc/crypto/Sha256Generator.h>
|
|
#include <tc/crypto/Sha512Generator.h>
|
|
|
|
// HMAC Calculator
|
|
#include <tc/crypto/HmacGenerator.h>
|
|
#include <tc/crypto/HmacMd5Generator.h>
|
|
#include <tc/crypto/HmacSha1Generator.h>
|
|
#include <tc/crypto/HmacSha256Generator.h>
|
|
#include <tc/crypto/HmacSha512Generator.h>
|
|
|
|
// Password-based Key Derivation Function
|
|
#include <tc/crypto/Pbkdf1KeyDeriver.h>
|
|
#include <tc/crypto/Pbkdf1Md5KeyDeriver.h>
|
|
#include <tc/crypto/Pbkdf1Sha1KeyDeriver.h>
|
|
|
|
#include <tc/crypto/Pbkdf2KeyDeriver.h>
|
|
#include <tc/crypto/Pbkdf2Sha1KeyDeriver.h>
|
|
#include <tc/crypto/Pbkdf2Sha256KeyDeriver.h>
|
|
#include <tc/crypto/Pbkdf2Sha512KeyDeriver.h>
|
|
|
|
// Psuedo-random Byte Generation
|
|
#include <tc/crypto/PseudoRandomByteGenerator.h>
|
|
|
|
// RSA Signing & Encryption
|
|
#include <tc/crypto/RsaKey.h>
|
|
#include <tc/crypto/RsaKeyGenerator.h>
|
|
|
|
#include <tc/crypto/RsaPkcs1Signer.h>
|
|
#include <tc/crypto/RsaPkcs1Md5Signer.h>
|
|
#include <tc/crypto/RsaPkcs1Sha1Signer.h>
|
|
#include <tc/crypto/RsaPkcs1Sha256Signer.h>
|
|
#include <tc/crypto/RsaPkcs1Sha512Signer.h>
|
|
|
|
#include <tc/crypto/RsaPssSigner.h>
|
|
#include <tc/crypto/RsaPssSha256Signer.h>
|
|
#include <tc/crypto/RsaPssSha512Signer.h>
|
|
|
|
#include <tc/crypto/RsaOaepEncryptor.h>
|
|
#include <tc/crypto/RsaOaepSha256Encryptor.h>
|
|
#include <tc/crypto/RsaOaepSha512Encryptor.h> |