mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
Base85: Only remove start and end markers with standard/ascii85 encoding
This commit is contained in:
parent
eab1be0e2c
commit
1294d764e2
@ -68,8 +68,10 @@ class FromBase85 extends Operation {
|
|||||||
|
|
||||||
input = input.replace(/\s+/g, "");
|
input = input.replace(/\s+/g, "");
|
||||||
|
|
||||||
|
if (encoding === "Standard") {
|
||||||
const matches = input.match(/<~(.+?)~>/);
|
const matches = input.match(/<~(.+?)~>/);
|
||||||
if (matches !== null) input = matches[1];
|
if (matches !== null) input = matches[1];
|
||||||
|
}
|
||||||
|
|
||||||
let i = 0;
|
let i = 0;
|
||||||
let block, blockBytes;
|
let block, blockBytes;
|
||||||
|
Loading…
Reference in New Issue
Block a user