X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=skein%2Fskein256_asm.S;h=e4729855dc010fe2542a5a510727464240acda9c;hb=e9e07569721b9e005d6b602e26a03e930e796577;hp=0c6c2d0b691df67c60b60d907ebe0e7fb05ba4fb;hpb=4f50c75ee5a6cc88bf7ea71957ed509e298e6c25;p=avr-crypto-lib.git diff --git a/skein/skein256_asm.S b/skein/skein256_asm.S index 0c6c2d0..e472985 100644 --- a/skein/skein256_asm.S +++ b/skein/skein256_asm.S @@ -1,7 +1,7 @@ /* skein256_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 skein256_init(skein256_ctx_t* ctx, uint16_t outsize_b){ +void skein256_init(skein256_ctx_t *ctx, uint16_t outsize_b){ skein_config_t conf; uint8_t null[UBI256_BLOCKSIZE_B]; memset(null, 0, UBI256_BLOCKSIZE_B); @@ -118,7 +118,7 @@ skein256_lastBlock: /******************************************************************************/ /* -void skein256_ctx2hash(void* dest, skein256_ctx_t* ctx){ +void skein256_ctx2hash(void *dest, skein256_ctx_t *ctx){ ubi256_ctx_t uctx; uint16_t outsize_b; @@ -267,7 +267,7 @@ skein256_ctx2hash: /******************************************************************************/ /* -void skein256(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b){ +void skein256(void *dest, uint16_t outlength_b, const void *msg, uint32_t length_b){ skein256_ctx_t ctx; skein256_init(&ctx, outlength_b); while(length_b>SKEIN256_BLOCKSIZE){