X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=noekeon%2Fomac_noekeon.h;fp=noekeon%2Fomac_noekeon.h;h=6ed1a37c5235fa50b300ba0c94dbe2d1e1ccba47;hp=a4db052f6b33ab188de3b7d3a4c2f0313af56900;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/noekeon/omac_noekeon.h b/noekeon/omac_noekeon.h index a4db052..6ed1a37 100644 --- a/noekeon/omac_noekeon.h +++ b/noekeon/omac_noekeon.h @@ -32,13 +32,13 @@ typedef uint8_t omac_noekeon_ctx_t[16]; -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); +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_*/