shithub: blake2

Download patch

ref: beb75f4512223e6a3a03a48992345256c5ef393a
parent: 5cbb39c9ef8007f0b63723e3aea06cd0887e36ad
parent: d43735ad6dbd6563e57637d23b9aa6fc047e8f84
author: Samuel Neves <sneves@users.noreply.github.com>
date: Thu Feb 15 15:54:56 EST 2018

Merge pull request #47 from CB-Rambo/master

syntax correction

--- a/ref/blake2s-ref.c
+++ b/ref/blake2s-ref.c
@@ -294,7 +294,7 @@
 #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
 
--