KDF
Derive a key. This function derives a key from a password using a Key Derivation Function (KDF), enhancing security for password storage.
Syntax
KDF(key_str, salt [, {info | iterations} [, kdf_name [, width ]]])Description
Examples
select hex(kdf('foo', 'bar', 'infa', 'hkdf'));
+----------------------------------------+
| hex(kdf('foo', 'bar', 'infa', 'hkdf')) |
+----------------------------------------+
| 612875F859CFB4EE0DFEFF9F2A18E836 |
+----------------------------------------+Last updated
Was this helpful?

