24 lines
404 B
TypeScript
24 lines
404 B
TypeScript
/**
|
|
* Vanillae Seed Phrase Library
|
|
*
|
|
* Refs:
|
|
* 1. BIP 39: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
|
|
/**
|
|
* Get a given number of seed bits.
|
|
*
|
|
* `how_many` must be a multiple of 33.
|
|
*
|
|
* Ref: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#generating-the-mnemonic
|
|
*/
|
|
function
|
|
seed_and_check_bits
|
|
(how_many : number)
|
|
: Uint8Array
|
|
{
|
|
}
|