mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-04 08:49:03 +00:00
95 lines
3.6 KiB
C++
95 lines
3.6 KiB
C++
/**
|
|
* @file Aes128CbcEncryptor.h
|
|
* @brief Declarations for API resources for related to AES128-CBC mode encryption/decryption.
|
|
* @author Jack (jakcron)
|
|
* @version 0.1
|
|
* @date 2020/07/04
|
|
**/
|
|
#pragma once
|
|
#include <tc/types.h>
|
|
#include <tc/crypto/AesEncryptor.h>
|
|
#include <tc/crypto/CbcEncryptor.h>
|
|
|
|
namespace tc { namespace crypto {
|
|
|
|
/**
|
|
* @typedef Aes128CbcEncryptor
|
|
* @brief Class for AES-CBC encryption/decryption with a keysize of 128 bits.
|
|
*
|
|
* @details This class encrypts/decrypts data using using AES128-CBC.
|
|
* For more information refer to @ref CbcEncryptor.
|
|
*/
|
|
using Aes128CbcEncryptor = CbcEncryptor<Aes128Encryptor>;
|
|
|
|
/**
|
|
* @brief Utility function for AES128-CBC encryption.
|
|
*
|
|
* @param[out] dst Buffer where encrypted data will be written.
|
|
* @param[in] src Pointer to data to encrypt.
|
|
* @param[in] size Size in bytes of data to encrypt.
|
|
* @param[in] key Pointer to key data.
|
|
* @param[in] key_size Size in bytes of key data.
|
|
* @param[in] iv Pointer to initialization vector.
|
|
* @param[in] iv_size Size in bytes of initialization vector.
|
|
*
|
|
* @pre
|
|
* - @p size is a multiple of @ref Aes128CbcEncryptor::kBlockSize.
|
|
* - @p key_size == @ref Aes128CbcEncryptor::kKeySize.
|
|
* - @p iv_size == @ref Aes128CbcEncryptor::kBlockSize.
|
|
*
|
|
* @post
|
|
* - Encrypted data is written to @p dst.
|
|
*
|
|
* @details
|
|
* This encrypts the data in @p src, writing it to @p dst.
|
|
*
|
|
* @note
|
|
* - @p dst and @p src can be the same pointer.
|
|
*
|
|
* @throw tc::ArgumentNullException @p dst was null.
|
|
* @throw tc::ArgumentNullException @p src was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p size was not a multiple of @ref Aes128CbcEncryptor::kBlockSize.
|
|
* @throw tc::ArgumentNullException @p key was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p key_size did not equal @ref Aes128CbcEncryptor::kKeySize.
|
|
* @throw tc::ArgumentNullException @p iv was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p iv_size did not equal @ref Aes128CbcEncryptor::kBlockSize.
|
|
*/
|
|
void EncryptAes128Cbc(byte_t* dst, const byte_t* src, size_t size, const byte_t* key, size_t key_size, const byte_t* iv, size_t iv_size);
|
|
|
|
/**
|
|
* @brief Utility function for AES128-CBC decryption.
|
|
*
|
|
* @param[out] dst Buffer where decrypted data will be written.
|
|
* @param[in] src Pointer to data to decrypt.
|
|
* @param[in] size Size in bytes of data to decrypt.
|
|
* @param[in] key Pointer to key data.
|
|
* @param[in] key_size Size in bytes of key data.
|
|
* @param[in] iv Pointer to initialization vector.
|
|
* @param[in] iv_size Size in bytes of initialization vector.
|
|
*
|
|
* @pre
|
|
* - @p size is a multiple of @ref Aes128CbcEncryptor::kBlockSize.
|
|
* - @p key_size == @ref Aes128CbcEncryptor::kKeySize.
|
|
* - @p iv_size == @ref Aes128CbcEncryptor::kBlockSize.
|
|
*
|
|
* @post
|
|
* - Decrypted data is written to @p dst.
|
|
*
|
|
* @details
|
|
* This decrypts the data in @p src, writing it to @p dst.
|
|
*
|
|
* @note
|
|
* - @p dst and @p src can be the same pointer.
|
|
*
|
|
* @throw tc::ArgumentNullException @p dst was null.
|
|
* @throw tc::ArgumentNullException @p src was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p size was not a multiple of @ref Aes128CbcEncryptor::kBlockSize.
|
|
* @throw tc::ArgumentNullException @p key was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p key_size did not equal @ref Aes128CbcEncryptor::kKeySize.
|
|
* @throw tc::ArgumentNullException @p iv was null.
|
|
* @throw tc::ArgumentOutOfRangeException @p iv_size did not equal @ref Aes128CbcEncryptor::kBlockSize.
|
|
*/
|
|
void DecryptAes128Cbc(byte_t* dst, const byte_t* src, size_t size, const byte_t* key, size_t key_size, const byte_t* iv, size_t iv_size);
|
|
|
|
}} // namespace tc::crypto
|