@axiasolar/wasm-crypto
v1.0.0
Published
Wrapper around crypto hashing functions
Downloads
5
Readme
@axiasolar/wasm-crypto
Wrapper around crypto hashing functions
Usage
Install the package (also requires @axiasolar/util
for TextEncoder
polyfills - not included here as a dependency to keep the tree lean)
yarn add @axiasolar/wasm-crypto @axiasolar/util
Use it -
const { u8aToHex } = require('@axiasolar/util');
const { bip39Generate, bip39ToSeed, waitReady } = require('@axiasolar/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));
}