Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ref/blake2s-ref.c')
-rw-r--r--ref/blake2s-ref.c2
1 files changed, 1 insertions, 1 deletions
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