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
path: root/ref
diff options
context:
space:
mode:
authorSamuel Neves <sneves@dei.uc.pt>2015-11-05 10:09:06 +0300
committerSamuel Neves <sneves@dei.uc.pt>2015-11-05 10:13:52 +0300
commit3d1a79158df421eadac9e32481f8edbd2e499f39 (patch)
tree6337a4df4303d76e9f13a76482c8a496f80a08bd /ref
parent56fe64a06cc288bfa10a1fef04219d1b46de09f6 (diff)
fix issue #11
Diffstat (limited to 'ref')
-rw-r--r--ref/blake2sp-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ref/blake2sp-ref.c b/ref/blake2sp-ref.c
index 4397618..1ddb5b1 100644
--- a/ref/blake2sp-ref.c
+++ b/ref/blake2sp-ref.c
@@ -188,7 +188,7 @@ int blake2sp( uint8_t *out, const void *in, const void *key, uint8_t outlen, uin
blake2s_state FS[1];
/* Verify parameters */
- :if ( NULL == in && inlen > 0 ) return -1;
+ if ( NULL == in && inlen > 0 ) return -1;
if ( NULL == out ) return -1;