]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/omac_noekeon.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / noekeon / omac_noekeon.S
index 598280b6882afb754ee64662ce896e72ac6c60f8..3824da7bdaad16a17fc21a7b9db4b71863baca3b 100644 (file)
@@ -1,7 +1,7 @@
 /* noekeon_omac.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
@@ -18,7 +18,7 @@
 */
 /*
  * \author  Daniel Otte
- * \email   daniel.otte@rub.de
+ * \email   bg@nerilex.org
  * \date    2008-08-24
  * \license GPLv3 or later
  * 
@@ -35,7 +35,7 @@
 /******************************************************************************/
 
 /*
- * void noekeon_omac_init(noekeon_omac_ctx_tctx){
+ * void noekeon_omac_init(noekeon_omac_ctx_t *ctx){
  *     memset(ctx, 0, 16);
  * }
  */
@@ -56,7 +56,7 @@ omac_noekeon_init:
 /******************************************************************************/       
 
 /*
- * void omac_noekeon_tweak(uint8_t t, const void* key, noekeon_omac_ctx_t* ctx){
+ * void omac_noekeon_tweak(uint8_t t, const void *key, noekeon_omac_ctx_t *ctx){
  *     *ctx[15] = t;
  *     noekeon_enc(ctx, key);
  * }
@@ -76,7 +76,7 @@ omac_noekeon_tweak:
 /******************************************************************************/
        
 /*
- * void noekeon_omac_next(const void* buffer, const void* key, noekeon_omac_ctx_t* ctx){
+ * void noekeon_omac_next(const void *buffer, const void *key, noekeon_omac_ctx_t *ctx){
  *     memxor(ctx, buffer, 16);
  *     noekeon_enc(ctx, key);
  * }
@@ -104,7 +104,7 @@ omac_noekeon_next:
 /******************************************************************************/
 
 /*
- * void omac_noekeon_comppad(uint8_t* pad, const void* key, uint8_t length_b){
+ * void omac_noekeon_comppad(uint8_t *pad, const void *key, uint8_t length_b){
  *     uint8_t c1,c2,r,j;
  *     memset(pad, 0, 16);
  *     noekeon_enc(pad, key);
@@ -194,7 +194,7 @@ omac_noekeon_comppad:
 /******************************************************************************/
 
 /*
- * void omac_noekeon_last(const void* buffer, uint8_t length_b, const void* key, noekeon_omac_ctx_t* ctx){
+ * void omac_noekeon_last(const void *buffer, uint8_t length_b, const void *key, noekeon_omac_ctx_t *ctx){
  *     while(length_b>128){
  *             omac_noekeon_next(buffer, key, ctx);
  *             buffer = (uint8_t*)buffer +16;
@@ -263,8 +263,8 @@ omac_noekeon_last:
 /******************************************************************************/
 
 /* 
- *void omac_noekeon(void* dest, const void* msg, uint16_t msglength_b,
- *                  const voidkey, uint8_t t){
+ *void omac_noekeon(void *dest, const void *msg, uint16_t msglength_b,
+ *                  const void *key, uint8_t t){
  *     omac_noekeon_init(dest);
  *     if(t!=0xff)
  *             omac_noekeon_tweak(t,key,dest);