remove isValid

This commit is contained in:
Sanjana Rajan 2018-02-01 13:41:19 +01:00
parent 5a6e65c00f
commit 41f1e697b5
2 changed files with 0 additions and 10 deletions

View File

@ -108,13 +108,6 @@ KeyPair.prototype.getPrivate = function () {
}
};
KeyPair.prototype.isValid = function () {
if (this.curve.curve.type === 'edwards' || this.curve.curve.type === 'mont') {
throw new Error('Validation is not Implemented for this curve.');
}
return this.keyPair.validate().result;
};
module.exports = {
KeyPair: KeyPair
};

View File

@ -153,9 +153,6 @@ describe('Elliptic Curve Cryptography', function () {
var curve = elliptic_curves.get(name);
return curve.genKeyPair().then(keyPair => {
expect(keyPair).to.exist;
// FIXME validation is not implemented for Curve25519/Ed25519 key pairs
if (name !== 'curve25519')
expect(keyPair.isValid()).to.be.true;
});
}));
});