mirror of
https://github.com/gchq/CyberChef
synced 2024-12-28 21:43:21 +00:00
Tidied Caesar Box Cipher
This commit is contained in:
parent
99a0a05947
commit
6cccc2c786
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ class CaesarBoxCipher extends Operation {
|
|||
|
||||
this.name = "Caesar Box Cipher";
|
||||
this.module = "Ciphers";
|
||||
this.description = "Caesar Box Encryption uses a box, a rectangle (or a square), or at least a size W caracterizing its width.";
|
||||
this.description = "Caesar Box is a transposition cipher used in the Roman Empire, in which letters of the message are written in rows in a square (or a rectangle) and then, read by column.";
|
||||
this.infoURL = "https://www.dcode.fr/caesar-box-cipher";
|
||||
this.inputType = "string";
|
||||
this.outputType = "string";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Base58 tests.
|
||||
* Caesar Box Cipher tests.
|
||||
*
|
||||
* @author n1073645 [n1073645@gmail.com]
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue