Usage of weak encryption algorithm (DES)
Overview
Description
Remediation Guidelines
const crypto = require("crypto"); const cipher = crypto.createCipheriv("aes-256-cbc", key, iv); const encrypted = cipher.update("my secret message", "utf8");
References
Configuration
PreviousUsage of vulnerable marked packageNextUsage of weak encryption algorithm on a password (DES)
Last updated