]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/skein512_asm.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / skein / skein512_asm.S
index 8f6229d9796a8344d752bea4e465158f47e8335a..8f541f6e4e079f6f721e52a5e552ad0078334487 100644 (file)
@@ -1,7 +1,7 @@
 /* skein512_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 skein512_init(skein512_ctx_tctx, uint16_t outsize_b){
+void skein512_init(skein512_ctx_t *ctx, uint16_t outsize_b){
        skein_config_t conf;
        uint8_t null[UBI512_BLOCKSIZE_B];
        memset(null, 0, UBI512_BLOCKSIZE_B);
@@ -119,7 +119,7 @@ skein512_lastBlock:
 
 /******************************************************************************/
 /*
-void skein512_ctx2hash(void* dest, skein512_ctx_t* ctx){
+void skein512_ctx2hash(void *dest, skein512_ctx_t *ctx){
        ubi512_ctx_t uctx;
        uint16_t outsize_b;
        
@@ -275,7 +275,7 @@ skein512_ctx2hash:
 
 /******************************************************************************/
 /*
-void skein512(void* dest, uint16_t outlength_b,const void* msg, uint32_t length_b){
+void skein512(void *dest, uint16_t outlength_b,const void *msg, uint32_t length_b){
        skein512_ctx_t ctx;
        skein512_init(&ctx, outlength_b);
        while(length_b>SKEIN512_BLOCKSIZE){