]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/skein256_asm.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / skein / skein256_asm.S
index 0c6c2d0b691df67c60b60d907ebe0e7fb05ba4fb..e4729855dc010fe2542a5a510727464240acda9c 100644 (file)
@@ -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_tctx, 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){