mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Fix buffer size in sha512 unit test
Nobody likes a stack overflow, even in unit tests. Closes 17699; but not in any released tor.
This commit is contained in:
parent
fe46fffd98
commit
0285054189
@ -287,7 +287,7 @@ test_crypto_sha(void *arg)
|
||||
char key[160];
|
||||
char digest[32];
|
||||
char data[50];
|
||||
char d_out1[DIGEST_LEN], d_out2[DIGEST256_LEN];
|
||||
char d_out1[DIGEST_LEN], d_out2[DIGEST512_LEN];
|
||||
char *mem_op_hex_tmp=NULL;
|
||||
|
||||
/* Test SHA-1 with a test vector from the specification. */
|
||||
|
Loading…
Reference in New Issue
Block a user