vdk_binary seems to be done

This commit is contained in:
2023-05-25 15:13:16 -06:00
parent ee30eaaf7f
commit a548572de9
14 changed files with 44 additions and 2109 deletions
+23
View File
@@ -0,0 +1,23 @@
/**
* 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
{
}