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

@vollcrypt/wasm

v0.1.6

Published

Cross-platform, quantum-resistant cryptography engine - WebAssembly binding

Downloads

359

Readme

@vollcrypt/wasm

Cross-platform, quantum-resistant cryptography engine - WebAssembly Binding

npm License: GPL v3

This package provides the WebAssembly (WASM) bindings for the Vollcrypt cryptography engine. It is compiled directly from Rust using wasm-pack, bringing robust, post-quantum cryptography straight to the user's browser or frontend application (React, Next.js, Vue, etc.) without relying on slow JavaScript cryptography implementations.

Features

  • Universal: Runs in any modern browser without native binary dependencies.
  • Quantum-Resistant: Implements the NIST FIPS 203 (ML-KEM-768) standard combined with X25519 for hybrid key exchange.
  • Client-Side E2EE: Perfect for End-to-End Encryption where keys never leave the user's device.
  • Secure Defaults: Provides AES-256-GCM, Ed25519, HKDF-SHA256, and post-compromise security ratchets out of the box.

Installation

npm install @vollcrypt/wasm

Note: Since this is a WebAssembly module, you may need to configure your bundler (Webpack, Vite, Rollup) to handle .wasm files depending on your frontend setup.

Quick Start

import * as vollcrypt from '@vollcrypt/wasm';

// Generate an Ed25519 Identity Keypair
const identity = vollcrypt.generate_ed25519_keypair();
console.log("Public Key:", Buffer.from(identity.public_key).toString('hex'));

// Sign and Verify
const message = new TextEncoder().encode("Hello from Vollcrypt WASM!");
const signature = vollcrypt.sign_message(identity.private_key, message);
const isValid = vollcrypt.verify_signature(identity.public_key, message, signature);

console.log("Signature Valid:", isValid); // true

// Hybrid Key Exchange (X25519)
const alice = vollcrypt.generate_x25519_keypair();
const bob = vollcrypt.generate_x25519_keypair();
const sharedSecret = vollcrypt.ecdh_shared_secret(alice.private_key, bob.public_key);

console.log("Shared Secret Derived successfully.");

Documentation

For full API documentation, architecture details, and the high-performance Native Node.js equivalent, please refer to the Vollcrypt Main Repository.

License

This project is licensed under the GNU General Public License v3.0.

For commercial use without the GPL copyleft requirement, please contact Berat Vural at [email protected].