Key Derivation Function interfaces
Key Derivation Function
Derive a key
size_t key_len | the desired output length in bytes |
SecureVector!ubyte secret | the secret input |
string salt | a diversifier |
Derive a key
size_t key_len | the desired output length in bytes |
SecureVector!ubyte secret | the secret input |
Vector!(ubyte, Alloc) salt | a diversifier |
Derive a key
size_t key_len | the desired output length in bytes |
SecureVector!ubyte secret | the secret input |
const(ubyte)* salt | a diversifier |
size_t salt_len | size of salt in bytes |
Derive a key
size_t key_len | the desired output length in bytes |
const(ubyte)* secret | the secret input |
size_t secret_len | size of secret in bytes |
string salt | a diversifier |
Derive a key
size_t key_len | the desired output length in bytes |
const(ubyte)* secret | the secret input |
size_t secret_len | size of secret in bytes |
const(ubyte)* salt | a diversifier |
size_t salt_len | size of salt in bytes |
Factory method for KDF (key derivation function)
string algo_spec | the name of the KDF to create |