Added hasher argument to PBKDF2 and EVPKDF operations.

This commit is contained in:
n1474335 2017-05-05 15:38:38 +00:00
parent d41d56e670
commit 66a93b81c6
2 changed files with 33 additions and 8 deletions

View file

@ -1401,6 +1401,11 @@ const OperationConfig = {
type: "number",
value: Cipher.KDF_ITERATIONS
},
{
name: "Hashing function",
type: "option",
value: Cipher.HASHERS
},
{
name: "Salt (hex)",
type: "string",
@ -1434,6 +1439,11 @@ const OperationConfig = {
type: "number",
value: Cipher.KDF_ITERATIONS
},
{
name: "Hashing function",
type: "option",
value: Cipher.HASHERS
},
{
name: "Salt (hex)",
type: "string",