]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/omac_noekeon.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / noekeon / omac_noekeon.h
index c9f1067f2b374d620167dd4afb5f5654339e21f4..1abe50569e82cb807255a78964c1ac347b221d5a 100644 (file)
@@ -1,6 +1,6 @@
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008, 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
@@ -17,7 +17,7 @@
 */
 /*
  * \author  Daniel Otte
- * \email   daniel.otte@rub.de
+ * \email   bg@nerilex.org
  * \license GPLv3 or later
  * 
  * 
 #ifndef NOEKEON_OMAC_H_
 #define NOEKEON_OMAC_H_
 
-#include "noekeon/noekeon.h"
+#include "noekeon.h"
 #include <stdint.h>
 
 typedef uint8_t omac_noekeon_ctx_t[16];
 
-void omac_noekeon_init(omac_noekeon_ctx_tctx);
-void omac_noekeon_tweak(uint8_t t, const void* key, omac_noekeon_ctx_t* ctx);
-void omac_noekeon_next(const void* buffer, const void* key, 
-                       omac_noekeon_ctx_tctx);
-void omac_noekeon_last(const void* buffer, uint8_t length_b, const void* key, 
-                       omac_noekeon_ctx_tctx);
-void omac_noekeon(void* dest, const void* msg, uint16_t msglength_b,
-                  const voidkey, uint8_t t);
+void omac_noekeon_init(omac_noekeon_ctx_t *ctx);
+void omac_noekeon_tweak(uint8_t t, const void *key, omac_noekeon_ctx_t *ctx);
+void omac_noekeon_next(const void *buffer, const void *key, 
+                       omac_noekeon_ctx_t *ctx);
+void omac_noekeon_last(const void *buffer, uint8_t length_b, const void *key, 
+                       omac_noekeon_ctx_t *ctx);
+void omac_noekeon(void *dest, const void *msg, uint16_t msglength_b,
+                  const void *key, uint8_t t);
 
 #endif /*NOEKEON_OMAC_H_*/