X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=shabal%2Fshabal-asm.S;h=9d9827e47294236a767fe2a9a6bfff34d741eb3a;hp=31879b383433cdb706bedebcfeb2e34d1bb28a1b;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25 diff --git a/shabal/shabal-asm.S b/shabal/shabal-asm.S index 31879b3..9d9827e 100644 --- a/shabal/shabal-asm.S +++ b/shabal/shabal-asm.S @@ -1,7 +1,7 @@ /* shabal-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 @@ -19,7 +19,7 @@ /* * \file shabal-asm.S * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \date 2009-04-27 * \license GPLv3 or later */ @@ -28,7 +28,7 @@ /******************************************************************************/ /* -void shabal_p(shabal_ctx_t* ctx, const void* m){ +void shabal_p(shabal_ctx_t *ctx, const void *m){ uint8_t i,j; for(i=0;i<16;++i){ ctx->b[i] = ROTL32(ctx->b[i],17); @@ -459,9 +459,9 @@ mod12table: /******************************************************************************/ /* -void shabal_nextBlock(shabal_ctx_t* ctx, const void* block){ +void shabal_nextBlock(shabal_ctx_t *ctx, const void *block){ uint8_t i; - uint32_t* t; + uint32_t *t; for(i=0;i<16;++i){ ctx->b[i] += ((uint32_t*)block)[i]; } @@ -570,9 +570,9 @@ shabal_nextBlock: /******************************************************************************/ /* -void shabal_lastBlock(shabal_ctx_t* ctx, const void* block, uint16_t length_b){ +void shabal_lastBlock(shabal_ctx_t *ctx, const void *block, uint16_t length_b){ uint8_t i,j; - uint32_t* t; + uint32_t *t; uint8_t buffer[64]; while(length_b>=SHABAL_BLOCKSIZE){ shabal_nextBlock(ctx, block);