Usage of weak encryption algorithm (RC4)
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 weak encryption algorithm on a password (RC4)NextUsage of weak hashing library (MD5)
Last updated