X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=skein%2Fubi1024.c;fp=skein%2Fubi1024.c;h=97a1c834891e5a497ee6682290775bb0efb85da0;hp=dafffbb29afd675dd677350566c4bbd73e7a02cb;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/skein/ubi1024.c b/skein/ubi1024.c index dafffbb..97a1c83 100644 --- a/skein/ubi1024.c +++ b/skein/ubi1024.c @@ -30,13 +30,13 @@ #include "memxor.h" #include "ubi.h" -void ubi1024_init(ubi1024_ctx_t* ctx, const void* g, uint8_t type){ +void ubi1024_init(ubi1024_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, UBI1024_BLOCKSIZE_B); } -void ubi1024_nextBlock(ubi1024_ctx_t* ctx, const void* block){ +void ubi1024_nextBlock(ubi1024_ctx_t *ctx, const void *block){ threefish1024_ctx_t tfctx; ctx->tweak.v64[0] += UBI1024_BLOCKSIZE_B; threefish1024_init(ctx->g, ctx->tweak.v8, &tfctx); @@ -47,7 +47,7 @@ void ubi1024_nextBlock(ubi1024_ctx_t* ctx, const void* block){ } -void ubi1024_lastBlock(ubi1024_ctx_t* ctx, const void* block, uint16_t length_b){ +void ubi1024_lastBlock(ubi1024_ctx_t *ctx, const void *block, uint16_t length_b){ threefish1024_ctx_t tfctx; while(length_b>UBI1024_BLOCKSIZE){ ubi1024_nextBlock(ctx, block); @@ -70,7 +70,7 @@ void ubi1024_lastBlock(ubi1024_ctx_t* ctx, const void* block, uint16_t length_b) } } -void ubi1024_ctx2hash(void* dest, const ubi1024_ctx_t* ctx){ +void ubi1024_ctx2hash(void *dest, const ubi1024_ctx_t *ctx){ memcpy(dest, ctx->g, UBI1024_BLOCKSIZE_B); }