New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-argon2

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-argon2

Password Hashing Using NodeJS' Built-in Argon2 Implementation

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

node-argon2

Password Hashing Using NodeJS' Built-in Argon2 Implementation.

Installation

Support for crypto.argon2 was implemented in NodeJS 24.7.0, make sure you have the same or later version.

npm i node-argon2

Usage

import { hash, verify } from 'node-argon2';

const password = 'correct-horse-battery-staple';

const passwordHash = await hash(password);
console.log(await verify({ password, hash: passwordHash })); // true

The default algorithm is argon2id with parameters memory=9216, iterations=4, parallelism=1. You can change these by passing them as parameters to hash():

const passwordhash = await hash(
  password,
  {
    memory: 19_456,
    iterations: 2,
    parallelism: 1,
  },
  'argon2d',
);

The package is also fully compatible with better-auth:

import { betterAuth } from 'better-auth';
import * as password from 'node-argon2';

export const auth = betterAuth({
  // ...rest of the options
  emailAndPassword: {
    password,
  },
});

Keywords

node

FAQs

Package last updated on 07 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts