1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-16 08:31:34 +02:00

Merge pull request #47 from CB-Rambo/master

syntax correction
This commit is contained in:
Samuel Neves 2018-02-15 20:54:56 +00:00 committed by GitHub
commit beb75f4512
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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