mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Added more infoLinks and updated newOperation script to include prompt for them.
This commit is contained in:
commit
e81c81351d
206 changed files with 249 additions and 12 deletions
|
@ -23,6 +23,7 @@ class RC2Encrypt extends Operation {
|
|||
this.name = "RC2 Encrypt";
|
||||
this.module = "Ciphers";
|
||||
this.description = "RC2 (also known as ARC2) is a symmetric-key block cipher designed by Ron Rivest in 1987. 'RC' stands for 'Rivest Cipher'.<br><br><b>Key:</b> RC2 uses a variable size key.<br><br>You can generate a password-based key using one of the KDF operations.<br><br><b>IV:</b> To run the cipher in CBC mode, the Initialization Vector should be 8 bytes long. If the IV is left blank, the cipher will run in ECB mode.<br><br><b>Padding:</b> In both CBC and ECB mode, PKCS#7 padding will be used.";
|
||||
this.infoURL = "https://wikipedia.org/wiki/RC2";
|
||||
this.inputType = "string";
|
||||
this.outputType = "string";
|
||||
this.args = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue