fixup! Initial ASCON hash256 and AEAD128 support based on NIST SP 800-232 ipd

This commit is contained in:
Juliusz Sosinowicz
2025-01-29 11:24:29 +01:00
parent 0e20cbe210
commit 1018144ece

View File

@ -37,10 +37,10 @@ extern "C" {
#define ASCON_AEAD128_TAG_SZ 16
typedef union AsconState {
word64 s64[5];
word32 s32[10];
word16 s16[20];
byte s8[40];
word64 s64[5];
word32 s32[10];
word16 s16[20];
byte s8[40];
} AsconState;
typedef struct wc_AsconHash256 {