]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/ubi512.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / skein / ubi512.c
index 526018fc9e4c96b6e097a4c8dabc484c1874f8a1..83621ed0613695132f62c6bc1344c305a8fc521b 100644 (file)
 #include "memxor.h"
 #include "ubi.h"
 
-void ubi512_init(ubi512_ctx_t* ctx, const void* g, uint8_t type){
+void ubi512_init(ubi512_ctx_t *ctx, const void *g, uint8_t type){
        memset(ctx->tweak.v8, 0, 15);
        ctx->tweak.v8[15] = 0x40+type;
        memcpy(ctx->g, g, UBI512_BLOCKSIZE_B);
 }
 
-void ubi512_nextBlock(ubi512_ctx_t* ctx, const void* block){
+void ubi512_nextBlock(ubi512_ctx_t *ctx, const void *block){
        threefish512_ctx_t tfctx;
        ctx->tweak.v64[0] += UBI512_BLOCKSIZE_B;
        threefish512_init(ctx->g, ctx->tweak.v8, &tfctx);
@@ -47,7 +47,7 @@ void ubi512_nextBlock(ubi512_ctx_t* ctx, const void* block){
 } 
 
 
-void ubi512_lastBlock(ubi512_ctx_t* ctx, const void* block, uint16_t length_b){
+void ubi512_lastBlock(ubi512_ctx_t *ctx, const void *block, uint16_t length_b){
        threefish512_ctx_t tfctx;
        while(length_b>UBI512_BLOCKSIZE){
                ubi512_nextBlock(ctx, block);
@@ -70,7 +70,7 @@ void ubi512_lastBlock(ubi512_ctx_t* ctx, const void* block, uint16_t length_b){
        }
 } 
 
-void ubi512_ctx2hash(void* dest, const ubi512_ctx_t* ctx){
+void ubi512_ctx2hash(void *dest, const ubi512_ctx_t *ctx){
        memcpy(dest, ctx->g, UBI512_BLOCKSIZE_B);
 }