0.5.1 • Published 4 years ago

@tetcoin/wasm-crypto v0.5.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
4 years ago

@tetcoin/wasm-crypto

Wrapper around crypto hashing functions

Usage

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

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

Use it -

const { u8aToHex } = require('@tetcoin/util');
const { bio39Generate, bip39ToSeed, waitReady } = require('@tetcoin/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));
}
0.5.1

4 years ago

0.35.1

4 years ago

0.3.1

4 years ago

1.4.1

4 years ago

1.2.1

4 years ago

3.2.3

4 years ago