X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=aes%2Faes.h;h=8e651f496d9d772864ba03cf47964232449c2692;hb=b8d6b2bd3ddea45506f584c7d44fe5fff0557ed1;hp=9d5b77087efed4dad22018ed795eceec26b9ca97;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25;p=avr-crypto-lib.git 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