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:
authorKrishna <krishna.vedala@ieee.org>2018-02-14 20:41:17 +0300
committerKrishna <krishna.vedala@ieee.org>2018-02-14 20:41:17 +0300
commitd43735ad6dbd6563e57637d23b9aa6fc047e8f84 (patch)
treefeca716f5858bb7eb3e436a8c098aaea3f517425
parent5cbb39c9ef8007f0b63723e3aea06cd0887e36ad (diff)
syntax correction
-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