- Fixed a bug where there uglify would cause an infinite loop in the elliptic library. Thanks to pelle for the fix.
- Update dependencies
- Fixed bug in serialization
- Add non-minified distributable
- Update distributable.
-
Handle bug from bitcore where leading zeros are stripped. We do this by padding the private key to 32 bytes in the
keystore._generatePrivKeys()
function. -
Remove unsupported
string.repeat()
function. H/T chrisforrester. -
Change
Uint8Array.from()
tonew Uint8Array
in key derivation. H/T chrisforrester. -
Update
ethereumjs-tx
library dependency. -
Hardened dependency on
bignumber.js
to specific commit.
-
Change order of parameters in
encryption
module. -
Add function
keystore.isDerivedKeyCorrect()
. -
Removed redundant data members
keyHash, salt
of the keystore.
- Refactoring by cubedro - move functions out to separate modules (signing, encryption) in order to make the core keystore object less cluttered.
-
Big refactoring of password handling. Key derivation is now moved out into an asyncronous function allowing for more secure password-based key derivation or user-supplied keys. A helper function is provided with Scrypt key derivation.
-
Change from using AES for keystore encryption to using xsalsa20 (in the form of
nacl.secretbox
). This provides a simpler interface for the symmetric encryption. -
Updated tests with the new password handling and correct usage of
done()
.
- Formatting changes in documentation.
-
Ability to have multiple HD derivation paths - allowing multiple Personas from one wallet seed
-
The ability to designate that keys from a derivation path should be used for asymmetric encryption using Curve25519
-
Ability to encrypt messages using keys in the lightwallet: messages can be encrypted to multiple recipients, allowing selective disclosure of Persona attributes as well as things like encrypted group chats between Personas
-
A massive test of the private key —> address functionality using a file with 10000 pseudorandomly generated private keys.
-
Fixed issues with nested
bitcore-lib
packages that would cause the build to fail with NPM3