New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gcm-stream

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gcm-stream - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "gcm-stream",
"version": "1.1.0",
"version": "1.1.1",
"description": "",

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

@@ -67,7 +67,11 @@ "use strict";

_flush(callback) {
const authTag = this.loopBuffer.mutableGetBufferBySize(this.macLength);
this.decipher.setAuthTag(authTag);
this.decipher.final();
this.push(null);
callback();
try {
const authTag = this.loopBuffer.mutableGetBufferBySize(this.macLength);
this.decipher.setAuthTag(authTag);
this.decipher.final();
}
finally {
this.push(null);
callback();
}
}

@@ -74,0 +78,0 @@ getValue(value) {

Sorry, the diff of this file is not supported yet

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