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