mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 03:34:39 +02:00
fix for gcc-11 build with blake2
This commit is contained in:
@@ -77,7 +77,7 @@
|
|||||||
byte personal[BLAKE2S_PERSONALBYTES]; /* 32 */
|
byte personal[BLAKE2S_PERSONALBYTES]; /* 32 */
|
||||||
} blake2s_param;
|
} blake2s_param;
|
||||||
|
|
||||||
ALIGN32 typedef struct __blake2s_state
|
typedef struct ALIGN32 __blake2s_state
|
||||||
{
|
{
|
||||||
word32 h[8];
|
word32 h[8];
|
||||||
word32 t[2];
|
word32 t[2];
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
byte personal[BLAKE2B_PERSONALBYTES]; /* 64 */
|
byte personal[BLAKE2B_PERSONALBYTES]; /* 64 */
|
||||||
} blake2b_param;
|
} blake2b_param;
|
||||||
|
|
||||||
ALIGN64 typedef struct __blake2b_state
|
typedef struct ALIGN64 __blake2b_state
|
||||||
{
|
{
|
||||||
word64 h[8];
|
word64 h[8];
|
||||||
word64 t[2];
|
word64 t[2];
|
||||||
|
Reference in New Issue
Block a user