X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fnessie_mac_test.h;fp=test_src%2Fnessie_mac_test.h;h=0f92f9c73e77957ecdabea4d1906fef9f4c67ad5;hp=411d843f5494d56841987a49a4779d27c6887eb2;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/test_src/nessie_mac_test.h b/test_src/nessie_mac_test.h index 411d843..0f92f9c 100644 --- a/test_src/nessie_mac_test.h +++ b/test_src/nessie_mac_test.h @@ -21,10 +21,10 @@ #include -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); +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); typedef struct nessie_mac_ctx_st{ @@ -32,7 +32,7 @@ typedef struct nessie_mac_ctx_st{ uint16_t keysize_b; uint16_t blocksize_B; uint16_t ctx_size_B; - char* name; + char *name; nessie_mac_init_fpt mac_init; nessie_mac_next_fpt mac_next; nessie_mac_last_fpt mac_last;