Skip to content
Snippets Groups Projects
Commit 555cb97b authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

[dnssec] knsec3hash, allow dash for empty salt

parent 1bbb8c69
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,19 @@ static void usage(FILE *stream)
"c01dcafe 1 10 knot-dns.cz\n");
}
/*!
* \brief Parse NSEC3 salt.
*/
static int str_to_salt(const char *str, dnssec_binary_t *salt)
{
if (strcmp(str, "-") == 0) {
salt->size = 0;
return DNSSEC_EOK;
} else {
return hex_to_bin(str, salt);
}
}
/*!
* \brief Parse NSEC3 parameters and fill structure with NSEC3 parameters.
*/
......@@ -63,7 +76,7 @@ static bool parse_nsec3_params(dnssec_nsec3_params_t *params, const char *salt_s
}
dnssec_binary_t salt = { 0 };
r = hex_to_bin(salt_str, &salt);
r = str_to_salt(salt_str, &salt);
if (r != DNSSEC_EOK) {
error("Invalid salt, %s.", dnssec_strerror(r));
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment