mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/**
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation";
|
|
import {COMPRESSION_TYPE, ZLIB_COMPRESSION_TYPE_LOOKUP} from "../lib/Zlib";
|
|
import zlibAndGzip from "zlibjs/bin/zlib_and_gzip.min";
|
|
|
|
const Zlib = zlibAndGzip.Zlib;
|
|
|
|
/**
|
|
* Zlib Deflate operation
|
|
*/
|
|
class ZlibDeflate extends Operation {
|
|
|
|
/**
|
|
* ZlibDeflate constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "Zlib Deflate";
|
|
this.module = "Compression";
|
|
this.description = "Compresses data using the deflate algorithm adding zlib headers.";
|
|
this.infoURL = "https://wikipedia.org/wiki/Zlib";
|
|
this.inputType = "ArrayBuffer";
|
|
this.outputType = "ArrayBuffer";
|
|
this.args = [
|
|
{
|
|
name: "Compression type",
|
|
type: "option",
|
|
value: COMPRESSION_TYPE
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {ArrayBuffer} input
|
|
* @param {Object[]} args
|
|
* @returns {ArrayBuffer}
|
|
*/
|
|
run(input, args) {
|
|
const deflate = new Zlib.Deflate(new Uint8Array(input), {
|
|
compressionType: ZLIB_COMPRESSION_TYPE_LOOKUP[args[0]]
|
|
});
|
|
return new Uint8Array(deflate.compress()).buffer;
|
|
}
|
|
|
|
}
|
|
|
|
export default ZlibDeflate;
|