1
mirror of https://github.com/hashcat/hashcat synced 2024-11-24 14:27:14 +01:00

Fixed: wrong sourcecode comment

This commit is contained in:
vlo 2019-05-15 07:38:18 +02:00
parent 84b8a1b1eb
commit bc1bc55b0d

View File

@ -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] == '=')