X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=aes%2Faes_keyschedule.h;fp=aes%2Faes_keyschedule.h;h=7c3e46e013914668574ff1c9c2725e878f541d7c;hp=ab5786ab602bb1d706df99109b7078a513e8d8a3;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/aes/aes_keyschedule.h b/aes/aes_keyschedule.h index ab5786a..7c3e46e 100644 --- a/aes/aes_keyschedule.h +++ b/aes/aes_keyschedule.h @@ -39,7 +39,7 @@ * \param keysize_b length of the key in bits (valid are 128, 192 and 256) * \param ctx pointer to the context where the keyschedule should be stored */ -void aes_init(const void* key, uint16_t keysize_b, aes_genctx_t* ctx); +void aes_init(const void *key, uint16_t keysize_b, aes_genctx_t *ctx); /** * \brief initialize the keyschedule for 128 bit key @@ -49,7 +49,7 @@ void aes_init(const void* key, uint16_t keysize_b, aes_genctx_t* ctx); * \param key pointer to the key material * \param ctx pointer to the context where the keyschedule should be stored */ -void aes128_init(const void* key, aes128_ctx_t* ctx); +void aes128_init(const void *key, aes128_ctx_t *ctx); /** * \brief initialize the keyschedule for 192 bit key @@ -59,7 +59,7 @@ void aes128_init(const void* key, aes128_ctx_t* ctx); * \param key pointer to the key material * \param ctx pointer to the context where the keyschedule should be stored */ -void aes192_init(const void* key, aes192_ctx_t* ctx); +void aes192_init(const void *key, aes192_ctx_t *ctx); /** * \brief initialize the keyschedule for 256 bit key @@ -69,7 +69,7 @@ void aes192_init(const void* key, aes192_ctx_t* ctx); * \param key pointer to the key material * \param ctx pointer to the context where the keyschedule should be stored */ -void aes256_init(const void* key, aes256_ctx_t* ctx); +void aes256_init(const void *key, aes256_ctx_t *ctx); #endif /* AES_KEYSCHEDULE_H_ */