Socket
Socket
Sign inDemoInstall

dashphrase

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dashphrase - npm Package Compare versions

Comparing version 1.3.6 to 1.3.7

2

dashphrase.js

@@ -320,3 +320,3 @@ /**

* @param {PhraseToSeedOptions} opts - verify is true by default
* @returns {Promise<Uint8Array>} - A new key - the PBKDF2 of the recovery phrase + `mnemonic` + salt.
* @returns {Promise<Uint8Array>} - A new seed - the PBKDF2 of the recovery phrase + `mnemonic` + salt.
*/

@@ -323,0 +323,0 @@

{
"name": "dashphrase",
"version": "1.3.6",
"version": "1.3.7",
"description": "Dash HD Wallet Recovery Phrase generator. Secure, lightweight, BIP-39-compatible Base2048 mnemonic word lists. Works in Node, Bundlers, and Browsers.",

@@ -5,0 +5,0 @@ "main": "dashphrase.js",

@@ -19,3 +19,3 @@ # [DashPhrase.js][dashphrasejs]

- [x] Easy to retype on different devices
- [x] Seed many, distinct keys from a single recovery phrase
- [x] Create many, distinct seeds from a single recovery phrase
- [x] Keys for AES Encryption & Decryption

@@ -67,7 +67,7 @@ - [x] Air Gap security

let keyBytes = await DashPhrase.toSeed(recoveryPhrase);
let seedBytes = await DashPhrase.toSeed(recoveryPhrase);
// Uint8Array[64] (suitable for use with importKey for AES, etc)
let fooKeyBytes = await DashPhrase.toSeed(recoveryPhrase, "foo");
// Uint8Array[64] (a completely different key, determined by "foo")
let fooSeedBytes = await DashPhrase.toSeed(recoveryPhrase, "foo");
// Uint8Array[64] (a completely different seed, determined by "foo")
```

@@ -208,5 +208,5 @@

Generate a private key seed or encryption key based on the recovery phrase
(mnemonic) and some other string - whether a salt, a password, another recovery
phrase or secret, or an id of some kind.
Generate a private key seed (generically useful as an encryption key) based on
the recovery phrase (mnemonic) and some other string - whether a salt, a
password, another recovery phrase or secret, or an id of some kind.

@@ -213,0 +213,0 @@ ```js

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc