npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

quantum-proof-hash

v1.0.2

Published

A quantum-resilient password hashing library using Argon2 + AES-256

Readme

🔐 quantum-proof-hash

Quantum-resilient password hashing with Argon2 + AES-256 encryption. Built for the future of secure authentication.

NPM Version License Node Version


🚀 Features

  • ✅ Uses Argon2id (memory-hard, quantum-resistant hash)
  • 🔐 Adds AES-256-GCM encryption to hash for extra protection
  • 🥂 Random salts + 🔥 secret pepper for hardened security
  • 🧪 Lightweight and easy to integrate into any Node.js project
  • 🧱 Zero external dependencies

📆 Installation

npm install quantum-proof-hash

🔧 Usage

const { hashPassword, verifyPassword } = require('quantum-proof-hash');

(async () => {
  const hashed = await hashPassword('supersecret123');
  console.log(hashed);

  const isMatch = await verifyPassword('supersecret123', hashed);
  console.log('Match:', isMatch); // true

  const wrong = await verifyPassword('wrongpassword', hashed);
  console.log('Wrong Match:', wrong); // false
})();

🔐 How It Works

  1. Combines password with a hidden pepper (from environment variable)
  2. Hashes using Argon2id with a 16-byte random salt
  3. Encrypts the resulting hash using AES-256-GCM
  4. Final output includes salt, IV, auth tag, and ciphertext

⚙️ Environment Setup

Create a .env file in your project root and define:

ENCRYPTION_KEY=your-64-char-hex-secret
PEPPER=your-super-secret-pepper
  • ENCRYPTION_KEY: A 256-bit (64 hex character) encryption key
  • PEPPER: A long, secret string only known to your server

⚠️ Never expose your PEPPER or ENCRYPTION_KEY in code or version control.


🧪 Testing

To test locally, use the test.js provided in the repo:

node test.js

Example output:

Hashed password: { salt: "...", enc: "iv:encrypted-data:auth-tag" }
Match: true
Wrong Match: false

📜 Example Output Format

{
  "salt": "ce0e30c541778e180da33cfb4287f68c",
  "enc": "04f06c...:3afca8...:26a473..."
}
  • salt: The salt used for Argon2 hashing
  • enc: The AES-encrypted Argon2 hash in the format iv:ciphertext:authTag

📄 License

MIT © Akash Dubey