Rename parse_and_store_generic_salt to generic_salt_decode

This commit is contained in:
jsteube
2019-02-14 09:53:29 +01:00
parent 5e8b450af6
commit 6f4b72bcd3
101 changed files with 101 additions and 101 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
const u8 *salt_pos = token.buf[1];
const int salt_len = token.len[1];
const bool parse_rc = parse_and_store_generic_salt ((u8 *) salt->salt_buf, (int *) &salt->salt_len, salt_pos, salt_len, hashconfig);
const bool parse_rc = generic_salt_decode (hashconfig, salt_pos, salt_len, (u8 *) salt->salt_buf, (int *) &salt->salt_len);
if (parse_rc == false) return (PARSER_SALT_LENGTH);