X-Git-Url: https://git.cryptolib.org/avr-crypto-lib.git?a=blobdiff_plain;f=skein%2Fubi256_asm.S;h=1a1e6434064fbd281870518991d8c14824201f8c;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hp=e5e6f9c60db54ef4980973ef2ce7c537e2013c8a;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25;p=avr-crypto-lib.git diff --git a/skein/ubi256_asm.S b/skein/ubi256_asm.S index e5e6f9c..1a1e643 100644 --- a/skein/ubi256_asm.S +++ b/skein/ubi256_asm.S @@ -1,7 +1,7 @@ /* ubi256_asm.S */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2009 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-16 * \license GPLv3 or later */ @@ -27,7 +27,7 @@ /******************************************************************************/ /* -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, 0, 15); ctx->tweak[15] = 0x40+type; memcpy(ctx->g, g, 32); @@ -57,7 +57,7 @@ ubi256_init: /******************************************************************************/ /* -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); } */ @@ -79,7 +79,7 @@ ubi256_ctx2hash: /******************************************************************************/ /* -void ubi256_nextBlock(ubi256_ctx_t* ctx, const void* block){ +void ubi256_nextBlock(ubi256_ctx_t *ctx, const void *block){ threefish256_ctx_t tfctx; ((uint64_t*)(ctx->tweak))[0] += UBI256_BLOCKSIZE_B; threefish256_init(ctx->g, ctx->tweak, &tfctx); @@ -160,7 +160,7 @@ exit: /******************************************************************************/ /* -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);