X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=noekeon%2Fomac_noekeon.h;h=1abe50569e82cb807255a78964c1ac347b221d5a;hp=a4db052f6b33ab188de3b7d3a4c2f0313af56900;hb=d9352fc79fbdee0cf3288809b104ea196ea85693;hpb=b8d6b2bd3ddea45506f584c7d44fe5fff0557ed1 diff --git a/noekeon/omac_noekeon.h b/noekeon/omac_noekeon.h index a4db052..1abe505 100644 --- a/noekeon/omac_noekeon.h +++ b/noekeon/omac_noekeon.h @@ -1,6 +1,6 @@ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2008, 2009 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ */ /* * \author Daniel Otte - * \email daniel.otte@rub.de + * \email bg@nerilex.org * \license GPLv3 or later * * @@ -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_*/