浏览代码

info url added

n1073645 5 年之前
父节点
当前提交
667dfd820e
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/core/operations/CaesarBoxCipher.mjs

+ 2 - 2
src/core/operations/CaesarBoxCipher.mjs

@@ -19,8 +19,8 @@ class CaesarBoxCipher extends Operation {
 
 
         this.name = "Caesar Box Cipher";
         this.name = "Caesar Box Cipher";
         this.module = "Ciphers";
         this.module = "Ciphers";
-        this.description = "";
-        this.infoURL = "";
+        this.description = "Caesar Box Encryption uses a box, a rectangle (or a square), or at least a size W caracterizing its width.";
+        this.infoURL = "https://www.dcode.fr/caesar-box-cipher";
         this.inputType = "string";
         this.inputType = "string";
         this.outputType = "string";
         this.outputType = "string";
         this.args = [
         this.args = [