X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=skein%2Fubi512_asm.S;h=3b74ce88f7d55ee19613760aeb4619145ee91bb0;hp=6a17c48d46b7a8f658795fd8321025baee6909e7;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25 diff --git a/skein/ubi512_asm.S b/skein/ubi512_asm.S index 6a17c48..3b74ce8 100644 --- a/skein/ubi512_asm.S +++ b/skein/ubi512_asm.S @@ -1,7 +1,7 @@ /* ubi512_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-25 * \license GPLv3 or later */ @@ -27,7 +27,7 @@ /******************************************************************************/ /* -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, 0, 15); ctx->tweak[15] = 0x40+type; memcpy(ctx->g, g, UBI512_BLOCKSIZE_B); @@ -57,7 +57,7 @@ ubi512_init: /******************************************************************************/ /* -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); } */ @@ -79,7 +79,7 @@ ubi512_ctx2hash: /******************************************************************************/ /* -void ubi512_nextBlock(ubi512_ctx_t* ctx, const void* block){ +void ubi512_nextBlock(ubi512_ctx_t *ctx, const void *block){ threefish512_ctx_t tfctx; ((uint64_t*)(ctx->tweak))[0] += UBI512_BLOCKSIZE_B; threefish512_init(ctx->g, ctx->tweak, &tfctx); @@ -161,7 +161,7 @@ exit: /******************************************************************************/ /* -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);