소스 검색

Modifications made to ciphersaber

n1073645 5 년 전
부모
커밋
6090842372
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/core/operations/CipherSaber2.mjs

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

@@ -21,8 +21,8 @@ class CipherSaber2 extends Operation {
 
 
         this.name = "CipherSaber2";
         this.name = "CipherSaber2";
         this.module = "Crypto";
         this.module = "Crypto";
-        this.description = "";
-        this.infoURL = "";
+        this.description = "CipherSaber is a simple symmetric encryption protocol based on the RC4 stream cipher. It gives reasonably strong protection of message confidentiality, yet it's designed to be simple enough that even novice programmers can memorize the algorithm and implement it from scratch.";
+        this.infoURL = "https://wikipedia.org/wiki/CipherSaber";
         this.inputType = "ArrayBuffer";
         this.inputType = "ArrayBuffer";
         this.outputType = "ArrayBuffer";
         this.outputType = "ArrayBuffer";
         this.args = [
         this.args = [