]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/threefish512_dec.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / skein / threefish512_dec.c
index 31e11af188b3558836043051b7a8839fc9037ef8..c5d9910019c82070d468267f95ec8418f61dc291 100644 (file)
@@ -35,7 +35,7 @@
 
 
 static
-void permute_inv8(voiddata){
+void permute_inv8(void *data){
        uint64_t t;
        t = X(6);
        X(6) = X(4);
@@ -48,7 +48,7 @@ void permute_inv8(void* data){
 }
 
 static
-void add_key_8(void* data, const threefish512_ctx_t* ctx, uint8_t s){
+void add_key_8(void *data, const threefish512_ctx_t *ctx, uint8_t s){
        uint8_t i;
        for(i=0; i<5; ++i){
                X(i) -= ctx->k[(s+i)%9];
@@ -58,7 +58,7 @@ void add_key_8(void* data, const threefish512_ctx_t* ctx, uint8_t s){
        X(7) -= ctx->k[(s+7)%9] + s;
 }
 
-void threefish512_dec(void* data, const threefish512_ctx_t* ctx){
+void threefish512_dec(void *data, const threefish512_ctx_t *ctx){
        uint8_t i=0,s=18;
        /* old round constants
        uint8_t r0[8] = {33, 29, 39, 33, 26, 34, 48, 38};