X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=omac_noekeon.h;h=6f1e4014c6006e716cdc71e8318c0164b0184cc2;hb=5e274071cfce142ba67387bea5ad017b42b8001c;hp=a5c73d2407288cc31f4bf660a978098d9c104be5;hpb=cf1c79ef3fa4bb22f0cab28b2b6e958293aca739;p=avr-crypto-lib.git diff --git a/omac_noekeon.h b/omac_noekeon.h index a5c73d2..6f1e401 100644 --- a/omac_noekeon.h +++ b/omac_noekeon.h @@ -4,14 +4,14 @@ #include "noekeon.h" #include -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);