🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
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

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