JSPM

@polkadot/wasm-crypto

7.5.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 158149
  • Score
    100M100P100Q172493F
  • License Apache-2.0

A wasm interface layer for use by @polkadot/util-crypto

Package Exports

  • @polkadot/wasm-crypto
  • @polkadot/wasm-crypto/bundle
  • @polkadot/wasm-crypto/cjs/bundle
  • @polkadot/wasm-crypto/cjs/index
  • @polkadot/wasm-crypto/cjs/init
  • @polkadot/wasm-crypto/cjs/initNone
  • @polkadot/wasm-crypto/cjs/initOnlyAsm
  • @polkadot/wasm-crypto/cjs/initOnlyWasm
  • @polkadot/wasm-crypto/cjs/initWasmAsm
  • @polkadot/wasm-crypto/cjs/package.json
  • @polkadot/wasm-crypto/cjs/packageDetect
  • @polkadot/wasm-crypto/cjs/packageInfo
  • @polkadot/wasm-crypto/init
  • @polkadot/wasm-crypto/initNone
  • @polkadot/wasm-crypto/initOnlyAsm
  • @polkadot/wasm-crypto/initOnlyWasm
  • @polkadot/wasm-crypto/initWasmAsm
  • @polkadot/wasm-crypto/package.json
  • @polkadot/wasm-crypto/packageDetect
  • @polkadot/wasm-crypto/packageInfo
  • @polkadot/wasm-crypto/packageInfo.js

Readme

@polkadot/wasm-crypto

Wrapper around crypto hashing functions

Usage

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

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

Use it -

import { u8aToHex } from '@polkadot/util';
import { bip39Generate, bip39ToSeed, waitReady } from '@polkadot/wasm-crypto';

// 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));