]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skein/skein1024_asm.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / skein / skein1024_asm.S
index 8983f6a2e539381b61bceeb93cce23cd499837e5..040b141609184f6e4155b62d3c02c7f0ebeb72df 100644 (file)
@@ -1,7 +1,7 @@
 /* skein1024_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-25
  * \license GPLv3 or later
  */ 
@@ -27,7 +27,7 @@
 
 /******************************************************************************/
 /*
-void skein1024_init(skein1024_ctx_tctx, uint16_t outsize_b){
+void skein1024_init(skein1024_ctx_t *ctx, uint16_t outsize_b){
        skein_config_t conf;
        uint8_t null[UBI1024_BLOCKSIZE_B];
        memset(null, 0, UBI1024_BLOCKSIZE_B);
@@ -119,7 +119,7 @@ skein1024_lastBlock:
 
 /******************************************************************************/
 /*
-void skein1024_ctx2hash(void* dest, skein1024_ctx_t* ctx){
+void skein1024_ctx2hash(void *dest, skein1024_ctx_t *ctx){
        ubi1024_ctx_t uctx;
        uint16_t outsize_b;
        
@@ -282,7 +282,7 @@ skein1024_ctx2hash:
 
 /******************************************************************************/
 /*
-void skein1024(void* dest, uint16_t outlength_b, const void* msg, uint32_t length_b){
+void skein1024(void *dest, uint16_t outlength_b, const void *msg, uint32_t length_b){
        skein1024_ctx_t ctx;
        skein1024_init(&ctx, outlength_b);
        while(length_b>SKEIN1024_BLOCKSIZE){