From 76e87fb547cb694fbfc57a18d2046683c6496a9f Mon Sep 17 00:00:00 2001 From: ka7 Date: Sat, 25 Feb 2017 14:21:30 +0100 Subject: [PATCH] spelling fixes (touches code in tests) (#494) --- test/default/pwhash_scrypt_ll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/default/pwhash_scrypt_ll.c b/test/default/pwhash_scrypt_ll.c index 3fc80dd5..c95a2ab2 100644 --- a/test/default/pwhash_scrypt_ll.c +++ b/test/default/pwhash_scrypt_ll.c @@ -30,13 +30,13 @@ test_vector(const char *password, const char *salt, uint64_t N, uint32_t r, size_t i; size_t olen = (sizeof data / sizeof data[0]); size_t passwordLength = strlen(password); - size_t saltLenght = strlen(salt); + size_t saltLength = strlen(salt); int lineitems = 0; int lineitemsLimit = 15; if (crypto_pwhash_scryptsalsa208sha256_ll( (const uint8_t *) password, passwordLength, (const uint8_t *) salt, - saltLenght, N, r, p, data, olen) != 0) { + saltLength, N, r, p, data, olen) != 0) { printf("pwhash_scryptsalsa208sha256_ll([%s],[%s]) failure\n", password, salt); return;