Socket
Socket
Sign inDemoInstall

browserify-aes

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browserify-aes - npm Package Compare versions

Comparing version 0.7.3 to 0.8.0

5

inject.js

@@ -10,7 +10,6 @@ module.exports = function (crypto, exports) {

var modes = require('./modes');
function listCiphers () {
function getCiphers () {
return Object.keys(modes);
}
exports.listCiphers = listCiphers;
exports.listCiphers = exports.getCiphers = getCiphers;
};

2

package.json
{
"name": "browserify-aes",
"version": "0.7.3",
"version": "0.8.0",
"description": "aes, for browserify",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -508,1 +508,6 @@ var test = require('tape');

});
test('getCiphers works', function (t) {
t.plan(1);
t.ok(crypto.getCiphers().length, 'get some ciphers');
})
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc