Use strong security mechanisms with argon2

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: typescript-node-security/argon2

Language: TypeScript

Severity: Error

Category: Security

CWE: 327

Description

Use secure and fast security mechanisms when 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', {})
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis