X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=omac_noekeon.h;h=6f1e4014c6006e716cdc71e8318c0164b0184cc2;hb=3a571bf2d55c87a3d08641f7df7681c923717eb1;hp=a5c73d2407288cc31f4bf660a978098d9c104be5;hpb=7cd0bb77cb76ef7c45b41fd33ca364ddb89ec1ad;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);