X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=aes%2Faes.h;fp=aes%2Faes.h;h=8e651f496d9d772864ba03cf47964232449c2692;hp=9d5b77087efed4dad22018ed795eceec26b9ca97;hb=aa060d30f8600acb9cc5bcf9fa3d97a2fbe5ccda;hpb=ca71e48e8e174ad602ff7d0f2d2ec1f65194f73f diff --git a/aes/aes.h b/aes/aes.h index 9d5b770..8e651f4 100644 --- a/aes/aes.h +++ b/aes/aes.h @@ -19,38 +19,25 @@ /** * \file aes.h * \email daniel.otte@rub.de - * \author Daniel Otte + * \author Daniel Otte * \date 2008-12-30 * \license GPLv3 or later - * + * */ #ifndef AES_H_ #define AES_H_ #include -typedef struct{ - uint8_t ks[16]; -} aes_roundkey_t; - -typedef struct{ - aes_roundkey_t key[10+1]; -} aes128_ctx_t; - -typedef struct{ - aes_roundkey_t key[12+1]; -} aes192_ctx_t; - -typedef struct{ - aes_roundkey_t key[14+1]; -} aes256_ctx_t; - -typedef struct{ - aes_roundkey_t key[1]; /* just to avoid the warning */ -} aes_genctx_t; - -typedef struct{ - uint8_t s[16]; -} aes_cipher_state_t; +#include "aes_types.h" +#include "aes128_enc.h" +#include "aes192_enc.h" +#include "aes256_enc.h" +#include "aes128_dec.h" +#include "aes192_dec.h" +#include "aes256_dec.h" +#include "aes_enc.h" +#include "aes_dec.h" +#include "aes_keyschedule.h" #endif