mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-09 15:55:01 -04:00
fix a bug in alphabet
This commit is contained in:
parent
4b235e1166
commit
4b5e631eec
3 changed files with 7 additions and 5 deletions
|
@ -15,7 +15,7 @@ import OperationError from "../errors/OperationError.mjs";
|
|||
export const ALPHABET_OPTIONS = [
|
||||
{
|
||||
name: "Standard",
|
||||
value: "A-Za-z0-9!#$%&()*+,./:;<=>?@[]^_`{|}~\"",
|
||||
value: "A-Za-z0-9!#$%&()*+,./:;<=>?@[]^_`{|}~"",
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ import "./tests/BaconCipher.mjs";
|
|||
import "./tests/Base58.mjs";
|
||||
import "./tests/Base64.mjs";
|
||||
import "./tests/Base62.mjs";
|
||||
import "./tests/Base91.mjs";
|
||||
import "./tests/BitwiseOp.mjs";
|
||||
import "./tests/ByteRepr.mjs";
|
||||
import "./tests/CartesianProduct.mjs";
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/**
|
||||
* Base64 tests.
|
||||
* Base91 tests.
|
||||
*
|
||||
* @author n1474335 [n1474335@gmail.com]
|
||||
* @author idevlab [nidevlab@outlook.com]
|
||||
*
|
||||
* @copyright Crown Copyright 2018
|
||||
* @copyright Crown Copyright 2020
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
import TestRegister from "../../lib/TestRegister.mjs";
|
||||
|
@ -15,7 +15,8 @@ TestRegister.addTests([
|
|||
expectedOutput: "idevlab",
|
||||
recipeConfig: [
|
||||
{
|
||||
op: "From Base64"
|
||||
op: "From Base91",
|
||||
args: ["A-Za-z0-9!#$%&()*+,./:;<=>?@[]^_`{|}~""],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue