0.11.102 • Published 6 years ago

@plugnet/wasm-crypto-js v0.11.102

Weekly downloads
1
License
-
Repository
-
Last release
6 years ago

@plugnet/wasm-crypto

Wrapper around crypto hashing functions

Usage

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

yarn add @plugnet/wasm-crypto @plugnet/util

Use it -

const { u8aToHex } = require('@plugnet/util');
const { bio39Generate, bip39ToSeed, waitReady } = require('@plugnet/wasm-crypto');

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

  // generate phrase
  const phrase = bip39Generate();

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

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