[tor-commits] [tor/master] Fix buffer size in sha512 unit test

nickm at torproject.org nickm at torproject.org
Thu Nov 26 15:00:38 UTC 2015


commit 0285054189d5cbc55bb0d40805e801e13cfb882d
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Nov 26 10:00:12 2015 -0500

    Fix buffer size in sha512 unit test
    
    Nobody likes a stack overflow, even in unit tests.
    
    Closes 17699; but not in any released tor.
---
 src/test/test_crypto.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c
index fcce2c5..204c066 100644
--- a/src/test/test_crypto.c
+++ b/src/test/test_crypto.c
@@ -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. */



More information about the tor-commits mailing list