DEP0106: crypto.createCipher 和 crypto.createDecipher


类型: 运行时

必须避免使用 crypto.createCipher()crypto.createDecipher(),因为它们使用弱密钥派生函数(没有盐的 MD5)和静态初始化向量。 建议使用带有随机盐的 crypto.pbkdf2()crypto.scrypt() 派生密钥,并使用 crypto.createCipheriv()crypto.createDecipheriv() 分别获取 CipherDecipher 对象。

Type: Runtime

Using crypto.createCipher() and crypto.createDecipher() must be avoided as they use a weak key derivation function (MD5 with no salt) and static initialization vectors. It is recommended to derive a key using crypto.pbkdf2() or crypto.scrypt() with random salts and to use crypto.createCipheriv() and crypto.createDecipheriv() to obtain the Cipher and Decipher objects respectively.