Skip to content

Commit 6cccc2c

Browse files
committed
Tidied Caesar Box Cipher
1 parent 99a0a05 commit 6cccc2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/operations/CaesarBoxCipher.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class CaesarBoxCipher extends Operation {
1919

2020
this.name = "Caesar Box Cipher";
2121
this.module = "Ciphers";
22-
this.description = "Caesar Box Encryption uses a box, a rectangle (or a square), or at least a size W caracterizing its width.";
22+
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.";
2323
this.infoURL = "https://www.dcode.fr/caesar-box-cipher";
2424
this.inputType = "string";
2525
this.outputType = "string";

tests/operations/tests/CaesarBoxCipher.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Base58 tests.
2+
* Caesar Box Cipher tests.
33
*
44
* @author n1073645 [[email protected]]
55
*

0 commit comments

Comments
 (0)