@polkadot/util-crypto
Version:
A collection of useful crypto utilities for @polkadot
9 lines (8 loc) • 378 B
JavaScript
/**
* @summary Create valid mnemonic strings, validate them using BIP39, and convert them to valid seeds
*/
export { mnemonicGenerate } from './generate.js';
export { mnemonicToEntropy } from './toEntropy.js';
export { mnemonicToLegacySeed } from './toLegacySeed.js';
export { mnemonicToMiniSecret } from './toMiniSecret.js';
export { mnemonicValidate } from './validate.js';