]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/omac_noekeon.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / noekeon / omac_noekeon.h
index a4db052f6b33ab188de3b7d3a4c2f0313af56900..6ed1a37c5235fa50b300ba0c94dbe2d1e1ccba47 100644 (file)
 
 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_*/