Comparing version 0.4.0 to 0.4.1
@@ -1,3 +0,8 @@ | ||
next release / 2014-03-09 | ||
0.4.1 / 2014-04-14 | ||
------------------ | ||
* bugfix: fixed input when `new` isn't used with the constructor. #11, #9 | ||
0.4.0 / 2014-03-09 | ||
------------------ | ||
* Dropped sha256 and ripemd160 deps. Upgraded to crypto-hashing library. | ||
@@ -4,0 +9,0 @@ * removed function wrapper |
@@ -9,3 +9,3 @@ var ECPointFp = require('ecurve').ECPointFp; | ||
function ECKey (bytes, compressed) { | ||
if (!(this instanceof ECKey)) return new ECKey(input); | ||
if (!(this instanceof ECKey)) return new ECKey(bytes); | ||
@@ -12,0 +12,0 @@ this._compressed = compressed || !!ECKey.compressByDefault; |
{ | ||
"name": "eckey", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Elliptical curve cryptography for crypto currencies such as Litecoin and Bitcoin", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
10783
0