X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=shabal%2Fshabal192-asm.S;h=72341cd634517625e217c7f0d36d62d0ce4ee67c;hp=09b41d5baea6a6b13e9e2b3d4245cda85329d981;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25 diff --git a/shabal/shabal192-asm.S b/shabal/shabal192-asm.S index 09b41d5..72341cd 100644 --- a/shabal/shabal192-asm.S +++ b/shabal/shabal192-asm.S @@ -1,7 +1,7 @@ /* shabal192-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 shabal192-asm.S * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \date 2009-04-27 * \license GPLv3 or later */ @@ -45,7 +45,7 @@ shabal192_iv: /******************************************************************************/ /* -void shabal192_init(shabal_ctx_t* ctx){ +void shabal192_init(shabal_ctx_t *ctx){ uint8_t i; ctx->b = ctx->b_buffer; ctx->c = ctx->c_buffer; @@ -121,7 +121,7 @@ shabal192_ctx2hash: /******************************************************************************/ /* -void shabal192(void* dest, void* msg, uint32_t length_b){ +void shabal192(void *dest, void *msg, uint32_t length_b){ shabal_ctx_t ctx; shabal192_init(&ctx); while(length_b>=SHABAL_BLOCKSIZE){