Fix state size in sha256 struct

This commit is contained in:
Kirill Fomichev 2016-05-21 10:17:06 +03:00
parent 6875b013e6
commit 2ab46954cb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
#include <stdint.h>
typedef struct {
uint32_t s[32];
uint32_t s[8];
uint32_t buf[16]; /* In big endian */
size_t bytes;
} secp256k1_sha256_t;