remove isValid
This commit is contained in:
parent
5a6e65c00f
commit
41f1e697b5
|
@ -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
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
});
|
||||
}));
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user