Metadata

ID: javascript-node-security/avoid-crypto-sha1

Language: JavaScript

Severity: Warning

Category: Security

CWE: 328

Description

Use of insecure encryption or hashing protocols expose your application to vulnerabilities.

Learn More

Non-Compliant Code Examples

var hash = CryptoJS.HmacSHA1("Message", "Secret Passphrase");
var hash = CryptoJS.HmacSHA1("Message", "Secret Passphrase", anotherargument);