diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-12 03:36:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-12 03:36:57 +0300 |
commit | 144b8596db7b45e22448e63d115b9902c14259fd (patch) | |
tree | b7b8b87821f82f13e2c34058ea7eef56a5cd0469 /include/aesni/raw.h | |
parent | add error message formatting functions (diff) | |
download | aes-tools-144b8596db7b45e22448e63d115b9902c14259fd.tar.gz aes-tools-144b8596db7b45e22448e63d115b9902c14259fd.zip |
add function docs to parts of the library
Diffstat (limited to '')
-rw-r--r-- | include/aesni/raw.h | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/include/aesni/raw.h b/include/aesni/raw.h index 4432231..2a1902e 100644 --- a/include/aesni/raw.h +++ b/include/aesni/raw.h @@ -4,10 +4,35 @@ * \date 2015 * \copyright This file is licensed under the terms of the MIT License. * See LICENSE.txt for details. + * \brief *Don't use.* Declares "raw" 128-bit block encryption/decryption + * functions. */ #pragma once +/** + * \defgroup aesni_raw_api Raw API + * \brief *Don't use.* "Raw" 128-bit block encryption/decryption functions. + * \ingroup aesni + * \{ + * + * For each of AES-128/192/256, four functions are defined: + * + * * a key schedule "expansion" function to prepare for encryption, + * * a 128-bit block encryption function using the key schedule, + * * a key schedule "reversion" function to prepare for decryption, + * * a 128-bit block decryption function using the "inverted" key schedule. + * + * The functions, respectively, are: + * + * * `aesni_raw_expand_key_scheduleNNN`, + * * `aesni_raw_encrypt_blockNNN`, + * * `aesni_raw_invert_key_scheduleNNN`, + * * `aesni_raw_decrypt_blockNNN`, + * + * where `NNN` is key length (either `128`, `192` or `256`). + */ + #include "data.h" #ifdef __cplusplus @@ -15,46 +40,132 @@ extern "C" { #endif +/** + * Expands a key schedule for AES-128 encryption. + * + * \param[in] key The AES-128 key. + * \param[out] key_schedule The AES-128 encryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_expand_key_schedule128( AesNI_Block128 key, AesNI_KeySchedule128* key_schedule); + +/** + * "Reverses" a key schedule for AES-128 "equivalent inverse cipher" decryption. + * + * \param[in] key_schedule The AES-128 encryption key schedule. Must not be `NULL`. + * \param[out] inverted_schedule The AES-128 decryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_invert_key_schedule128( AesNI_KeySchedule128* key_schedule, AesNI_KeySchedule128* inverted_schedule); +/** + * Encrypts a 128-bit block using AES-128. + * + * \param[in] plain The plaintext to be encrypted. + * \param[in] key_schedule The AES-128 encryption key schedule. Must not be `NULL`. + * \return The encrypted 128-bit ciphertext. + */ AesNI_Block128 __fastcall aesni_raw_encrypt_block128( AesNI_Block128 plain, AesNI_KeySchedule128* key_schedule); + +/** + * Decrypts a 128-bit block using AES-128. + * + * \param[in] cipher The ciphertext to be decrypted. + * \param[in] inverted_schedule The AES-128 decryption ("reversed") key schedule. Must not be `NULL`. + * \return The decrypted 128-bit plaintext. + */ AesNI_Block128 __fastcall aesni_raw_decrypt_block128( AesNI_Block128 cipher, AesNI_KeySchedule128* inverted_schedule); +/** + * Expands a key schedule for AES-192 encryption. + * + * \param[in] key_lo The least significant part of the AES-192 key. + * \param[in] key_hi The most significant part of the AES-192 key. + * \param[out] key_schedule The AES-192 encryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_expand_key_schedule192( AesNI_Block128 key_lo, AesNI_Block128 key_hi, AesNI_KeySchedule192* key_schedule); + +/** + * "Reverses" a key schedule for AES-192 "equivalent inverse cipher" decryption. + * + * \param[in] key_schedule The AES-192 encryption key schedule. Must not be `NULL`. + * \param[out] inverted_schedule The AES-192 decryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_invert_key_schedule192( AesNI_KeySchedule192* key_schedule, AesNI_KeySchedule192* inverted_schedule); +/** + * Encrypts a 128-bit block using AES-192. + * + * \param[in] plain The plaintext to be encrypted. + * \param[in] key_schedule The AES-192 encryption key schedule. Must not be `NULL`. + * \return The encrypted 128-bit ciphertext. + */ AesNI_Block128 __fastcall aesni_raw_encrypt_block192( AesNI_Block128 plain, AesNI_KeySchedule192* key_schedule); + +/** + * Decrypts a 128-bit block using AES-192. + * + * \param[in] cipher The ciphertext to be decrypted. + * \param[in] inverted_schedule The AES-192 decryption ("reversed") key schedule. Must not be `NULL`. + * \return The decrypted 128-bit plaintext. + */ AesNI_Block128 __fastcall aesni_raw_decrypt_block192( AesNI_Block128 cipher, AesNI_KeySchedule192* inverted_schedule); +/** + * Expands a key schedule for AES-256 encryption. + * + * \param[in] key_lo The least significant part of the AES-256 key. + * \param[in] key_hi The most significant part of the AES-256 key. + * \param[out] key_schedule The AES-256 encryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_expand_key_schedule256( AesNI_Block128 key_lo, AesNI_Block128 key_hi, AesNI_KeySchedule256* key_schedule); + +/** + * "Reverses" a key schedule for AES-256 "equivalent inverse cipher" decryption. + * + * \param[in] key_schedule The AES-256 encryption key schedule. Must not be `NULL`. + * \param[out] inverted_schedule The AES-256 decryption key schedule. Must not be `NULL`. + */ void __fastcall aesni_raw_invert_key_schedule256( AesNI_KeySchedule256* key_schedule, AesNI_KeySchedule256* inverted_schedule); +/** + * Encrypts a 128-bit block using AES-256. + * + * \param[in] plain The plaintext to be encrypted. + * \param[in] key_schedule The AES-256 encryption key schedule. Must not be `NULL`. + * \return The encrypted 128-bit ciphertext. + */ AesNI_Block128 __fastcall aesni_raw_encrypt_block256( AesNI_Block128 plain, AesNI_KeySchedule256* key_schedule); + +/** + * Decrypts a 128-bit block using AES-256. + * + * \param[in] cipher The ciphertext to be decrypted. + * \param[in] inverted_schedule The AES-256 decryption ("reversed") key schedule. Must not be `NULL`. + * \return The decrypted 128-bit plaintext. + */ AesNI_Block128 __fastcall aesni_raw_decrypt_block256( AesNI_Block128 cipher, AesNI_KeySchedule256* inverted_schedule); @@ -62,3 +173,7 @@ AesNI_Block128 __fastcall aesni_raw_decrypt_block256( #ifdef __cplusplus } #endif + +/** + * \} + */ |