[tor-commits] [tor/master] Use DIGEST512_LEN macro in crypto_hash_sha512.h in ref10
nickm at torproject.org
nickm at torproject.org
Fri Apr 7 13:59:42 UTC 2017
commit f5cc8da7e0dc5ba52a1a6a7744e749f4f46c35bc
Author: Nick Mathewson <nickm at torproject.org>
Date: Fri Apr 7 09:58:04 2017 -0400
Use DIGEST512_LEN macro in crypto_hash_sha512.h in ref10
---
src/ext/ed25519/ref10/crypto_hash_sha512.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/ext/ed25519/ref10/crypto_hash_sha512.h b/src/ext/ed25519/ref10/crypto_hash_sha512.h
index e454c4e..5dad935 100644
--- a/src/ext/ed25519/ref10/crypto_hash_sha512.h
+++ b/src/ext/ed25519/ref10/crypto_hash_sha512.h
@@ -13,7 +13,7 @@
sha_ctx_ = crypto_digest512_new(DIGEST_SHA512); \
crypto_digest_add_bytes(sha_ctx_, (const char *)(inp1), (len1)); \
crypto_digest_add_bytes(sha_ctx_, (const char *)(inp2), (len2)); \
- crypto_digest_get_digest(sha_ctx_, (char *)out, 64); \
+ crypto_digest_get_digest(sha_ctx_, (char *)out, DIGEST512_LEN); \
crypto_digest_free(sha_ctx_); \
} while (0)
@@ -27,6 +27,6 @@
crypto_digest_add_bytes(sha_ctx_, (const char *)(inp1), (len1)); \
crypto_digest_add_bytes(sha_ctx_, (const char *)(inp2), (len2)); \
crypto_digest_add_bytes(sha_ctx_, (const char *)(inp3), (len3)); \
- crypto_digest_get_digest(sha_ctx_, (char *)out, 64); \
+ crypto_digest_get_digest(sha_ctx_, (char *)out, DIGEST512_LEN); \
crypto_digest_free(sha_ctx_); \
} while(0)
More information about the tor-commits
mailing list