Socket
Socket
Sign inDemoInstall

crypto-js

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crypto-js - npm Package Compare versions

Comparing version 3.1.8 to 3.1.9-1

2

bower.json
{
"name": "crypto-js",
"version": "3.1.8",
"version": "3.1.9",
"description": "JavaScript library of crypto standards.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -1,9 +0,9 @@

;(function (root, factory) {
;(function (root, factory, undef) {
if (typeof exports === "object") {
// CommonJS
module.exports = exports = factory(require("./core"));
module.exports = exports = factory(require("./core"), require("./evpkdf"));
}
else if (typeof define === "function" && define.amd) {
// AMD
define(["./core"], factory);
define(["./core", "./evpkdf"], factory);
}

@@ -469,7 +469,12 @@ else {

var modeCreator = mode.createDecryptor;
// Keep at least one block in the buffer for unpadding
this._minBufferSize = 1;
}
this._mode = modeCreator.call(mode, this, iv && iv.words);
if (this._mode && this._mode.__creator == modeCreator) {
this._mode.init(this, iv && iv.words);
} else {
this._mode = modeCreator.call(mode, this, iv && iv.words);
this._mode.__creator = modeCreator;
}
},

@@ -476,0 +481,0 @@

{
"name": "crypto-js",
"version": "3.1.8",
"version": "3.1.9-1",
"description": "JavaScript library of crypto standards.",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is too big to display

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