]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - aes/aes256_enc.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / aes / aes256_enc.c
index cb2f3ffdbdaf1154cc08028a425c67b9bcab490f..3e3e379299a59e1ea41ba446dc2f843177c0a1eb 100644 (file)
@@ -28,7 +28,7 @@
 #include "aes.h"
 #include "aes_enc.h"
 
-void aes256_enc(void* buffer, aes256_ctx_t* ctx){
+void aes256_enc(void *buffer, aes256_ctx_t *ctx){
        aes_encrypt_core(buffer, (aes_genctx_t*)ctx, 14);
 }