JSPM

@aritz-cracker/cryptowasm

1.18.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q24227F
  • License MIT

ultra-lightweight library for Bitcoin, Bitcoin Cash, and Bitauth

Package Exports

  • @aritz-cracker/cryptowasm

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aritz-cracker/cryptowasm) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Cryptowasm

An ultra-lightweight JavaScript library exposing several cryptographic primitives commonly used in cryptocurrency

Cryptowasm has no dependencies and works in all JavaScript environments, including Node.js, Deno (probably), and browsers.

Purpose

Cryptowasm is a stripped-down fork of libauth by the very skillful bitjson, only including Secp256k1, sha1, sha256, sha512, and Ripemd160. No other utility tools or bitcoin(cash)-specific feature sets.

Getting Started

To get started, install cryptowasm:

npm install cryptowasm

And import the functionality you need:

import { instantiateSecp256k1 } from 'cryptowasm';
import { msgHash, pubkey, sig } from './somewhere';

(async () => {
  const secp256k1 = await instantiateSecp256k1();
  secp256k1.verifySignatureDERLowS(sig, pubkey, msgHash)
    ? console.log('🚀 Signature valid')
    : console.log('❌ Signature invalid');
})();

Stable API

The following APIs are considered stable, and will only include breaking changes in major version upgrades.

WebAssembly ECDSA & Schnorr

WebAssembly Hashing Functions