Key derivation function

Applies to: cybersecurity

A key derivation function turns a password or secret into a cryptographic key, usually with salt and deliberate work cost.

hashlib.pbkdf2_hmac('sha256', pwd, salt, 100000)

See also: salt, hash-function