X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=skein%2Fubi512.c;h=a02b2f560e67758522e7b3b44ddb0591988a68e7;hp=526018fc9e4c96b6e097a4c8dabc484c1874f8a1;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=701cee0d98aab48dd3192c8cc7c77eb42581bc56 diff --git a/skein/ubi512.c b/skein/ubi512.c index 526018f..a02b2f5 100644 --- a/skein/ubi512.c +++ b/skein/ubi512.c @@ -1,7 +1,7 @@ /* ubi512.c */ /* This file is part of the ARM-Crypto-Lib. - Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ */ /* * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \date 2009-03-12 * \license GPLv3 or later * @@ -30,13 +30,13 @@ #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); }