Password Based Key Derivation Function 2 (PBKDF2) demo in Node.JS v15
A quick demo on how to use Password Based Key Derivation Function 2 (PBKDF2) to generate keys and IVs to use with all different ciphers available in Node.JS v15.x.
const crypto = require('crypto');
const PASSWORD = "My_Secret_Password"; // Could be the password/key used to encrypt a message