X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=skein%2Fskein1024_asm.S;h=040b141609184f6e4155b62d3c02c7f0ebeb72df;hp=8983f6a2e539381b61bceeb93cce23cd499837e5;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25 diff --git a/skein/skein1024_asm.S b/skein/skein1024_asm.S index 8983f6a..040b141 100644 --- a/skein/skein1024_asm.S +++ b/skein/skein1024_asm.S @@ -1,7 +1,7 @@ /* skein1024_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 skein1024_init(skein1024_ctx_t* ctx, uint16_t outsize_b){ +void skein1024_init(skein1024_ctx_t *ctx, uint16_t outsize_b){ skein_config_t conf; uint8_t null[UBI1024_BLOCKSIZE_B]; memset(null, 0, UBI1024_BLOCKSIZE_B); @@ -119,7 +119,7 @@ skein1024_lastBlock: /******************************************************************************/ /* -void skein1024_ctx2hash(void* dest, skein1024_ctx_t* ctx){ +void skein1024_ctx2hash(void *dest, skein1024_ctx_t *ctx){ ubi1024_ctx_t uctx; uint16_t outsize_b; @@ -282,7 +282,7 @@ skein1024_ctx2hash: /******************************************************************************/ /* -void skein1024(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b){ +void skein1024(void *dest, uint16_t outlength_b, const void *msg, uint32_t length_b){ skein1024_ctx_t ctx; skein1024_init(&ctx, outlength_b); while(length_b>SKEIN1024_BLOCKSIZE){