Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: javascript-node-security/argon2

Language: JavaScript

Severity: Error

Category: Security

CWE: 327

Description

Use secure and fast security mechanisms with using argon2.

Learn More

Non-Compliant Code Examples

await argon2.hash('password', {type: argon2.argon2d})
await argon2.hash('password', {type: argon2.argon2i})

Compliant Code Examples

await argon2.hash('password', {type: argon2.argon2id})
await argon2.hash('password', {})