secured.kdf

Undocumented in source.

Members

Functions

hkdf
KdfResult hkdf(ubyte[] key, ulong outputLen)
Undocumented in source. Be warned that the author may not have intended to support it.
hkdf_ex
ubyte[] hkdf_ex(ubyte[] key, ubyte[] salt, string info, ulong outputLen, HashAlgorithm func)
Undocumented in source. Be warned that the author may not have intended to support it.
pbkdf2
KdfResult pbkdf2(string password, uint iterations)
Undocumented in source. Be warned that the author may not have intended to support it.
pbkdf2_ex
ubyte[] pbkdf2_ex(string password, ubyte[] salt, HashAlgorithm func, uint outputLen, uint iterations)
Undocumented in source. Be warned that the author may not have intended to support it.
pbkdf2_verify
bool pbkdf2_verify(KdfResult test, string password, uint iterations)
Undocumented in source. Be warned that the author may not have intended to support it.
pbkdf2_verify_ex
bool pbkdf2_verify_ex(ubyte[] test, string password, ubyte[] salt, HashAlgorithm func, uint outputLen, uint iterations)
Undocumented in source. Be warned that the author may not have intended to support it.
scrypt
KdfResult scrypt(string password)
Undocumented in source. Be warned that the author may not have intended to support it.
scrypt
KdfResult scrypt(ubyte[] password)
Undocumented in source. Be warned that the author may not have intended to support it.
scrypt_ex
ubyte[] scrypt_ex(string password, ubyte[] salt, ulong n, ulong r, ulong p, ulong maxMemory, ulong length)
Undocumented in source. Be warned that the author may not have intended to support it.
scrypt_ex
ubyte[] scrypt_ex(ubyte[] password, ubyte[] salt, ulong n, ulong r, ulong p, ulong maxMemory, ulong length)
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

KdfResult
struct KdfResult
Undocumented in source.

Meta