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 5383085 commit 6862daeCopy full SHA for 6862dae
package.json
@@ -16,7 +16,7 @@
16
"node": "*"
17
},
18
"dependencies": {
19
- "browserify-aes": "0.7.3",
+ "browserify-aes": "0.8.0",
20
"create-ecdh": "1.0.1",
21
"diffie-hellman": "2.2.2",
22
"browserify-sign": "2.7.1",
test/aes.js
@@ -18,4 +18,8 @@ test('ciphers', function (t) {
t.equals(data.toString('hex'), Buffer.concat(out).toString('hex'));
});
+});
+test('getCiphers', function (t) {
23
+ t.plan(1);
24
+ t.ok(crypto.getCiphers().length, 'get ciphers returns an array');
25
0 commit comments