X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=skein%2Fubi256.c;h=01229ac5b30658df7b153a6cf6f555c107b39f1a;hb=e9e07569721b9e005d6b602e26a03e930e796577;hp=8e60d341301bac76c534b17fa5429b5ae95b6d73;hpb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;p=avr-crypto-lib.git diff --git a/skein/ubi256.c b/skein/ubi256.c index 8e60d34..01229ac 100644 --- a/skein/ubi256.c +++ b/skein/ubi256.c @@ -1,7 +1,7 @@ /* ubi256.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 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); }