This commit is contained in:
Christopher Jeffrey 2016-02-23 04:04:42 -08:00
parent 6cf17c2b6d
commit a3b2149c1f

View File

@ -76,7 +76,7 @@ KeyPair.prototype.getPrivateKey = function getPrivateKey(enc) {
var privateKey;
if (!this._privateKey) {
privateKey = this.key.getPrivate();
privateKey = this.privatePoint;
if (!privateKey)
return;