X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=aes192_enc.h;h=30b79ece34d6855094dc0fadabb77eed3d9b4d58;hb=2dc047a070be7f0d64f4d4e7f4296a9650af07dc;hp=b82504b1434b11831466cdab9249f7a6155047c9;hpb=e08695bd5905f1306c16d617d044d97649b5e2ae;p=avr-crypto-lib.git diff --git a/aes192_enc.h b/aes192_enc.h index b82504b..30b79ec 100644 --- a/aes192_enc.h +++ b/aes192_enc.h @@ -22,7 +22,7 @@ * \author Daniel Otte * \date 2008-12-31 * \license GPLv3 or later - * + * \ingroup AES */ #ifndef AES192_ENC_H_ @@ -31,6 +31,15 @@ #include "aes.h" #include "aes_enc.h" + +/** \fn void aes192_enc(void* buffer, aes192_ctx_t* ctx) + * \brief encrypt with 192 bit key. + * + * This function encrypts one block with the AES algorithm under control of + * a keyschedule produced from a 192 bit key. + * \param buffer pointer to the block to encrypt + * \param ctx pointer to the key schedule + */ void aes192_enc(void* buffer, aes192_ctx_t* ctx);