]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - shacal2/shacal2_enc.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / shacal2 / shacal2_enc.c
index b5380e57f3f4fefb6d54877266be7752e00e6600..6d5e8aa6dff16138ca1ae1ad70650fdfe16c76c5 100644 (file)
@@ -32,7 +32,7 @@
 #include "shacal2_enc.h"
 
 
-void shacal2_enc(void* buffer, void* key, uint16_t keysize_b){
+void shacal2_enc(void *buffer, void *key, uint16_t keysize_b){
        uint8_t i;
        sha256_ctx_t ctx, t_ctx;
        memcpy(ctx.h, buffer, SHACAL2_BLOCKSIZE_B);