From 18439cd58f50b23825620138abe6f1cbe705b69d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 11 Dec 2024 23:30:47 +0100 Subject: [PATCH] Swap order of blocks and blocks0 in 128l_mac_state Spotted by @utelle -- Thanks! --- src/aegis128l/aegis128l_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aegis128l/aegis128l_common.h b/src/aegis128l/aegis128l_common.h index edf3582..c1c06b2 100644 --- a/src/aegis128l/aegis128l_common.h +++ b/src/aegis128l/aegis128l_common.h @@ -304,8 +304,8 @@ typedef struct _aegis128l_state { } _aegis128l_state; typedef struct _aegis128l_mac_state { - aegis_blocks blocks0; aegis_blocks blocks; + aegis_blocks blocks0; uint8_t buf[RATE]; uint64_t adlen; size_t pos;