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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@justinwwolcott/ez-web-crypto

v4.0.4

Published

class for working with webcrypto in browser and node

Downloads

380

Readme

image

npm version License: ISC Node.js Version

A lightweight, type-safe wrapper around the Web Crypto API, providing easy-to-use cryptographic operations for both browser and Node.js environments.

Features

  • 🔐 AES-GCM encryption/decryption
  • 🔑 ECDH encryption/decryption
  • ✍️ ECDSA digital signature/verification
  • 🔒 Password-based encryption
  • #️⃣ HMAC operations
  • 🧮 Cryptographic hashing (SHA-1, SHA-256, SHA-384, SHA-512)
  • 📱 Works in both browser and Node.js environments
  • 📘 Full TypeScript support

Installation

npm install @justinwwolcott/ez-web-crypto

Usage

AES Encryption

import { AESMakeKey, AESEncrypt, AESDecrypt } from '@justinwwolcott/ez-web-crypto';

// Generate a new AES key
const key = await AESMakeKey();

// Encrypt data
const encrypted = await AESEncrypt(key, btoa('Hello, World!'));

// Decrypt data
const decrypted = await AESDecrypt(key, encrypted.iv, encrypted.ciphertext, true);
console.log(decrypted); // 'Hello, World!'

ECDH Key Exchange

import { EcMakeCryptKeys, EcEncrypt, EcDecrypt } from '@justinwwolcott/ez-web-crypto';

// Generate key pairs for both parties
const aliceKeys = await EcMakeCryptKeys();
const bobKeys = await EcMakeCryptKeys();

// Alice encrypts message for Bob
const encrypted = await EcEncrypt(
  aliceKeys.privateKey,
  bobKeys.publicKey,
  btoa('Secret message')
);

// Bob decrypts message from Alice
const decrypted = await EcDecrypt(
  bobKeys.privateKey,
  aliceKeys.publicKey,
  encrypted.iv,
  encrypted.ciphertext,
  true
);

Digital Signatures

import { EcMakeSigKeys, EcSignData, EcVerifySig } from '@justinwwolcott/ez-web-crypto';

// Generate signing keys
const keys = await EcMakeSigKeys();

// Sign data
const signature = await EcSignData(keys.privateKey, btoa('Sign this message'));

// Verify signature
const isValid = await EcVerifySig(
  keys.publicKey,
  signature,
  btoa('Sign this message')
);

Password-Based Encryption

import { PASSWORD_ENCRYPT, PASSWORD_DECRYPT } from '@justinwwolcott/ez-web-crypto';

// Encrypt with password
const encrypted = await PASSWORD_ENCRYPT('myPassword', btoa('Secret data'));

// Decrypt with password
const decrypted = await PASSWORD_DECRYPT('myPassword', encrypted);

Hashing

import { HASH } from '@justinwwolcott/ez-web-crypto';

const hash = await HASH('SHA-256', 'Hash this text');

API Reference

AES Operations

  • AESMakeKey(exportable?: boolean): Promise<Base64String | CryptoKey>
  • AESEncrypt(key: Base64String | CryptoKey, data: Base64String, nonce?: Base64String): Promise<AESEncryptResult>
  • AESDecrypt(key: Base64String | CryptoKey, nonce: Base64String, data: Base64String, returnText?: boolean): Promise<string | ArrayBuffer>

ECDH Operations

  • EcMakeCryptKeys(exportable?: boolean): Promise<ECKeyPair>
  • EcEncrypt(privateKey: Base64String | CryptoKey, publicKey: Base64String | CryptoKey, data: Base64String): Promise<AESEncryptResult>
  • EcDecrypt(privateKey: Base64String | CryptoKey, publicKey: Base64String | CryptoKey, nonce: Base64String, data: Base64String, returnText?: boolean): Promise<string | ArrayBuffer>

Digital Signatures

  • EcMakeSigKeys(exportable?: boolean): Promise<ECSignatureKeyPair>
  • EcSignData(privateKey: Base64String | CryptoKey, data: Base64String): Promise<Base64String>
  • EcVerifySig(publicKey: Base64String | CryptoKey, signature: Base64String, data: Base64String): Promise<boolean>

Password Operations

  • PASSWORD_ENCRYPT(password: string, data: Base64String): Promise<Base64String>
  • PASSWORD_DECRYPT(password: string, data: Base64String): Promise<string>

Hashing Operations

  • HASH(algorithm: HashAlgorithm, data: string, length?: number): Promise<Base64String>
  • HMAC(secret: string, data: string): Promise<HexString>

Environment Support

  • Node.js ≥ 14.0.0
  • Modern browsers with Web Crypto API support
  • TypeScript support included

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. Make sure to read the contributing guidelines before submitting your PR.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the ISC License - see the LICENSE file for details.

Author

Justin W. Wolcott

Support

If you encounter any problems or have questions, please open an issue on GitHub.