Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa43cf commit 703c83eCopy full SHA for 703c83e
test/index.js
@@ -28,7 +28,7 @@ fixtures.valid.rsa.forEach(function (f) {
28
priv = Buffer.from(f['private'], 'base64');
29
}
30
31
- test(f.message, function (t) {
+ (nCrypto.getHashes().indexOf(f.scheme) >= 0 ? test : test.skip)(f.message, function (t) {
32
var bSign = bCrypto.createSign(f.scheme);
33
var nSign = nCrypto.createSign(f.scheme);
34
var bSig = bSign.update(message).sign(priv);
0 commit comments