]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - aes/aes_enc.h
some minor space adjustments
[avr-crypto-lib.git] / aes / aes_enc.h
index f3c4dfab1da005beddded25f99e92db4b350999b..1dc519e9245813c29cd14841889a8aeeb097efc5 100644 (file)
 /**
  * \file     aes_enc.h
  * \email    daniel.otte@rub.de
- * \author   Daniel Otte 
+ * \author   Daniel Otte
  * \date     2008-12-30
  * \license  GPLv3 or later
- * 
+ *
  */
 #ifndef AES_ENC_H_
 #define AES_ENC_H_
-#include "aes.h"
+#include "aes_types.h"
 #include <stdint.h>
 
 
-void aes_encrypt_core(aes_cipher_state_t* state, const aes_genctx_t* ks, uint8_t rounds);
+void aes_encrypt_core(aes_cipher_state_t *state, const aes_genctx_t *ks, uint8_t rounds);
 
 
 #endif