HTTP Gzip Decrypt working

This commit is contained in:
windhamwong@nva-hk.com 2017-07-04 14:30:34 +01:00
parent 90802db3c4
commit b9d33c0618
5 changed files with 50 additions and 0 deletions

View file

@ -1676,6 +1676,13 @@ const OperationConfig = {
outputType: "string",
args: []
},
"HTTP gzip decrypt": {
description: "Decrypts Gzip payload from a request or response and returning plaintext of the header and decrypted payload.",
run: Compress.runHttpGzip,
inputType: "byteArray",
outputType: "byteArray",
args: []
},
"Parse User Agent": {
description: "Attempts to identify and categorise information contained in a user-agent string.",
run: HTTP.runParseUserAgent,