]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/ubi256.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / skein / ubi256.c
index 8e60d341301bac76c534b17fa5429b5ae95b6d73..6b7509e8d3fa7b3180d5d093fa31f5c3fda1974b 100644 (file)
 #include "memxor.h"
 #include "ubi.h"
 
-void ubi256_init(ubi256_ctx_t* ctx, const void* g, uint8_t type){
+void ubi256_init(ubi256_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, 32);
 }
 
-void ubi256_nextBlock(ubi256_ctx_t* ctx, const void* block){
+void ubi256_nextBlock(ubi256_ctx_t *ctx, const void *block){
        threefish256_ctx_t tfctx;
        ctx->tweak.v64[0] += UBI256_BLOCKSIZE_B;
        threefish256_init(ctx->g, ctx->tweak.v8, &tfctx);
@@ -47,7 +47,7 @@ void ubi256_nextBlock(ubi256_ctx_t* ctx, const void* block){
 } 
 
 
-void ubi256_lastBlock(ubi256_ctx_t* ctx, const void* block, uint16_t length_b){
+void ubi256_lastBlock(ubi256_ctx_t *ctx, const void *block, uint16_t length_b){
        threefish256_ctx_t tfctx;
        while(length_b>UBI256_BLOCKSIZE){
                ubi256_nextBlock(ctx, block);
@@ -74,7 +74,7 @@ void ubi256_lastBlock(ubi256_ctx_t* ctx, const void* block, uint16_t length_b){
 
 } 
 
-void ubi256_ctx2hash(void* dest, const ubi256_ctx_t* ctx){
+void ubi256_ctx2hash(void *dest, const ubi256_ctx_t *ctx){
        memcpy(dest, ctx->g, UBI256_BLOCKSIZE_B);
 }