]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/noekeon_asm.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / noekeon / noekeon_asm.S
index b0a2a16f93da12843c5d39a022103f04f5781c01..e7f1424ae9563659d2ca7ead062e0369129ff9b4 100644 (file)
@@ -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);