mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 08:15:00 -04:00
add base91 support
This commit is contained in:
parent
c9d9730726
commit
4b235e1166
5 changed files with 242 additions and 0 deletions
22
tests/operations/tests/Base91.mjs
Normal file
22
tests/operations/tests/Base91.mjs
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* Base64 tests.
|
||||
*
|
||||
* @author n1474335 [n1474335@gmail.com]
|
||||
*
|
||||
* @copyright Crown Copyright 2018
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
import TestRegister from "../../lib/TestRegister.mjs";
|
||||
|
||||
TestRegister.addTests([
|
||||
{
|
||||
name: "From Base91: First",
|
||||
input: "lM_1Z<jNG",
|
||||
expectedOutput: "idevlab",
|
||||
recipeConfig: [
|
||||
{
|
||||
op: "From Base64"
|
||||
},
|
||||
],
|
||||
},
|
||||
]);
|
Loading…
Add table
Add a link
Reference in a new issue