From bc1bc55b0d3d8bbf0bcfa140846e78fb935dbc6f Mon Sep 17 00:00:00 2001 From: vlo Date: Wed, 15 May 2019 07:38:18 +0200 Subject: [PATCH] Fixed: wrong sourcecode comment --- src/modules/module_20400.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module_20400.c b/src/modules/module_20400.c index 6c5433fb2..56ecaf9c4 100644 --- a/src/modules/module_20400.c +++ b/src/modules/module_20400.c @@ -198,7 +198,7 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE const size_t salt_len_enc = base64_encode (int_to_ab64, (const u8 *) pbkdf2_sha1->salt_buf, salt->salt_len, (u8 *) salt_enc); const size_t hash_len_enc = base64_encode (int_to_ab64, (const u8 *) tmp, HASH_LEN_RAW, (u8 *) hash_enc); - // substitute + with . and remove padding = + // remove padding = for (size_t i = 0; i < salt_len_enc; i++) { if (salt_enc[i] == '=')