keyfork-mnemonic-util: .seed() => .entropy(), make new bip39-compliant .seed() method

This commit is contained in:
Ryan Heywood 2023-10-07 23:04:47 -05:00
parent ea0a207a5f
commit 15c7cffb1d
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 12 additions and 0 deletions

12
Cargo.lock generated
View File

@ -927,6 +927,8 @@ version = "0.1.0"
dependencies = [
"bip39",
"hex",
"hmac",
"pbkdf2",
"serde_json",
"sha2",
]
@ -1226,6 +1228,16 @@ dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "pbkdf2"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
dependencies = [
"digest 0.10.7",
"hmac",
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"