From beae72348cf25af021db11c0f810287dfbf2b352 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Wed, 31 Jan 2018 18:40:59 +0100 Subject: [PATCH] Comment nitpick about test vectors. We no longer need SHA-512 for the Ed25519 test vectors, since we now generate EdDSA/Blake2b test vectors with the Donna implementation. --- src/monocypher.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/monocypher.c b/src/monocypher.c index 949de02..3fe79dd 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -4,10 +4,9 @@ /// Utilities /// ///////////////// -// By default, EdDSA signatures use blake2b. SHA-512 is provided as -// an option for full ed25519 compatibility (a must for test vectors). -// Compile with option -DED25519_SHA512 to use with sha512. If you do -// so, you must provide the "sha512" header with suitable functions. +// By default, EdDSA signatures use blake2b. SHA-512 is provided as an +// option for full ed25519 compatibility. To use with SHA-512, compile +// with option -DED25519_SHA512 and provide the "sha512" header. #ifdef ED25519_SHA512 #include "sha512.h" #define HASH crypto_sha512 -- 2.47.3