From d43735ad6dbd6563e57637d23b9aa6fc047e8f84 Mon Sep 17 00:00:00 2001 From: Krishna Date: Wed, 14 Feb 2018 12:41:17 -0500 Subject: syntax correction --- ref/blake2s-ref.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref/blake2s-ref.c b/ref/blake2s-ref.c index fbf4265..c8b035f 100644 --- a/ref/blake2s-ref.c +++ b/ref/blake2s-ref.c @@ -294,7 +294,7 @@ int blake2s( void *out, size_t outlen, const void *in, size_t inlen, const void #if defined(SUPERCOP) int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) { - return blake2s( out, BLAKE2S_OUTBYTES in, inlen, NULL, 0 ); + return blake2s( out, BLAKE2S_OUTBYTES, in, inlen, NULL, 0 ); } #endif -- cgit v1.2.3