1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 10:37:24 -07:00

Make struct crypto_generichash_blake2b_state non-anonymous

This commit is contained in:
Frank Denis 2013-04-26 21:29:53 -07:00
parent 4fa7625540
commit 47bb35cb8b

View File

@ -23,7 +23,7 @@ extern "C" {
#endif #endif
#pragma pack(push, 1) #pragma pack(push, 1)
CRYPTO_ALIGN(64) typedef struct { CRYPTO_ALIGN(64) typedef struct crypto_generichash_blake2b_state {
uint64_t h[8]; uint64_t h[8];
uint64_t t[2]; uint64_t t[2];
uint64_t f[2]; uint64_t f[2];