X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fnessie_mac_test.h;h=411d843f5494d56841987a49a4779d27c6887eb2;hb=bd9d6731486cac11f6b294b3c84681eb65947f3d;hp=571c0325d4f00542b932fb37479f4546b8585020;hpb=17332291e15183d71d88ed868275e3cb53917180;p=avr-crypto-lib.git diff --git a/test_src/nessie_mac_test.h b/test_src/nessie_mac_test.h index 571c032..411d843 100644 --- a/test_src/nessie_mac_test.h +++ b/test_src/nessie_mac_test.h @@ -1,6 +1,6 @@ /* nessie_mac_test.h */ /* - This file is part of the This file is part of the AVR-Crypto-Lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -21,9 +21,9 @@ #include -typedef void (*nessie_mac_init_fpt)(void* key, uint16_t keysize_b, void* ctx); -typedef void (*nessie_mac_next_fpt)(void* buffer, void* ctx); -typedef void (*nessie_mac_last_fpt)(void* buffer, uint16_t size_b, void* key, uint16_t keysize_b, void* ctx); +typedef void (*nessie_mac_init_fpt)(void* ctx, const void* key, uint16_t keysize_b); +typedef void (*nessie_mac_next_fpt)(void* ctx, const void* buffer); +typedef void (*nessie_mac_last_fpt)(void* ctx, const void* buffer, uint16_t size_b); typedef void (*nessie_mac_conv_fpt)(void* buffer, void* ctx);