Skip to content

Commit

Permalink
Tidied Caesar Box Cipher
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Jul 8, 2022
1 parent 99a0a05 commit 6cccc2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/operations/CaesarBoxCipher.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion tests/operations/tests/CaesarBoxCipher.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Base58 tests.
* Caesar Box Cipher tests.
*
* @author n1073645 [[email protected]]
*
Expand Down

0 comments on commit 6cccc2c

Please sign in to comment.