X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=noekeon%2Fnoekeon_asm.S;h=e7f1424ae9563659d2ca7ead062e0369129ff9b4;hp=b0a2a16f93da12843c5d39a022103f04f5781c01;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=924aa320bef6f192feecdb67d209c790bd49ea49 diff --git a/noekeon/noekeon_asm.S b/noekeon/noekeon_asm.S index b0a2a16..e7f1424 100644 --- a/noekeon/noekeon_asm.S +++ b/noekeon/noekeon_asm.S @@ -1,7 +1,7 @@ /* noekeon_asm.S */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008 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 @@ /* * noekeon assembler implementation for avr * author: Daniel Otte - * email: daniel.otte@rub.de + * email: bg@nerilex.org * license: GPLv3 */ @@ -166,7 +166,7 @@ bigendian_rotr32_exit: /******************************************************************************/ /* -void theta(uint32_t* k, uint32_t* a){ +void theta(uint32_t *k, uint32_t *a){ uint32_t temp; temp = a[0] ^ a[2]; temp ^= ROTR32(temp, 8) ^ ROTL32(temp, 8); a[1] ^= temp; @@ -583,7 +583,7 @@ pi: /******************************************************************************/ /* -void noekeon_init(void* key, noekeon_ctx_t* ctx){ +void noekeon_init(void *key, noekeon_ctx_t *ctx){ uint8_t nullv[16]; memset(nullv, 0, 16);