mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 08:46:19 -04:00
Quick fix for empty recipe error. Changed deflate back to compression module
This commit is contained in:
parent
76f27dbcdb
commit
bbc580e71b
5 changed files with 9 additions and 7 deletions
|
@ -7,6 +7,7 @@
|
|||
*/
|
||||
import Gunzip from "../../operations/Gunzip";
|
||||
import Gzip from "../../operations/Gzip";
|
||||
import RawDeflate from "../../operations/RawDeflate";
|
||||
import RawInflate from "../../operations/RawInflate";
|
||||
import Unzip from "../../operations/Unzip";
|
||||
import Zip from "../../operations/Zip";
|
||||
|
@ -18,6 +19,7 @@ const OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|||
OpModules.Compression = {
|
||||
"Gunzip": Gunzip,
|
||||
"Gzip": Gzip,
|
||||
"Raw Deflate": RawDeflate,
|
||||
"Raw Inflate": RawInflate,
|
||||
"Unzip": Unzip,
|
||||
"Zip": Zip,
|
||||
|
|
|
@ -12,7 +12,6 @@ import FromHex from "../../operations/FromHex";
|
|||
import PowerSet from "../../operations/PowerSet";
|
||||
import ROT13 from "../../operations/ROT13";
|
||||
import ROT47 from "../../operations/ROT47";
|
||||
import RawDeflate from "../../operations/RawDeflate";
|
||||
import RotateLeft from "../../operations/RotateLeft";
|
||||
import RotateRight from "../../operations/RotateRight";
|
||||
import SetDifference from "../../operations/SetDifference";
|
||||
|
@ -34,7 +33,6 @@ OpModules.Default = {
|
|||
"Power Set": PowerSet,
|
||||
"ROT13": ROT13,
|
||||
"ROT47": ROT47,
|
||||
"Raw Deflate": RawDeflate,
|
||||
"Rotate left": RotateLeft,
|
||||
"Rotate right": RotateRight,
|
||||
"Set Difference": SetDifference,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue