@axia-js/wasm-crypto

0.1.2 • Public • Published

@axia-js/wasm-crypto

Wrapper around crypto hashing functions

Usage

Install the package (also requires @axia-js/util for TextEncoder polyfills - not included here as a dependency to keep the tree lean)

yarn add @axia-js/wasm-crypto @axia-js/util

Use it -

const { u8aToHex } = require('@axia-js/util');
const { bip39Generate, bip39ToSeed, waitReady } = require('@axia-js/wasm-crypto');

async function main () {
  // first wait until the WASM has been loaded (async init)
  await waitReady();

  // generate phrase
  const phrase = bip39Generate(12);

  // get ed25519 seed from phrase
  const seed = bip39ToSeed(phrase, '');

  // display
  console.log('phrase:', phrase);
  console.log('seed:', u8aToHex(seed));
}

Readme

Keywords

none

Package Sidebar

Install

npm i @axia-js/wasm-crypto

Weekly Downloads

0

Version

0.1.2

License

none

Unpacked Size

259 kB

Total Files

17

Last publish

Collaborators

  • sankar-boro-zeeve