]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - omac_noekeon.h
unifoming omac nameing; +auto help
[avr-crypto-lib.git] / omac_noekeon.h
index a5c73d2407288cc31f4bf660a978098d9c104be5..6f1e4014c6006e716cdc71e8318c0164b0184cc2 100644 (file)
@@ -4,14 +4,14 @@
 #include "noekeon.h"
 #include <stdint.h>
 
-typedef uint8_t noekeon_omac_ctx_t[16];
+typedef uint8_t omac_noekeon_ctx_t[16];
 
-void omac_noekeon_init(noekeon_omac_ctx_t* ctx);
-void omac_noekeont_tweak(uint8_t t, const void* key, noekeon_omac_ctx_t* ctx);
+void omac_noekeon_init(omac_noekeon_ctx_t* ctx);
+void omac_noekeont_tweak(uint8_t t, const void* key, omac_noekeon_ctx_t* ctx);
 void omac_noekeon_next(const void* buffer, const void* key, 
-                       noekeon_omac_ctx_t* ctx);
+                       omac_noekeon_ctx_t* ctx);
 void omac_noekeon_last(const void* buffer, uint8_t length_b, const void* key, 
-                       noekeon_omac_ctx_t* ctx);
+                       omac_noekeon_ctx_t* ctx);
 void omac_noekeon(void* dest, const void* msg, uint16_t msglength_b,
                   const void* key, uint8_t t);