2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-13 06:43:26 +00:00

Added 'RC2 Encrypt' and 'RC2 Decrypt' operations.

This commit is contained in:
n1474335
2018-01-01 19:50:06 +00:00
parent b58942f69a
commit f52f5a0edb
5 changed files with 204 additions and 2 deletions

View File

@@ -28,6 +28,8 @@ OpModules.Ciphers = {
"Derive EVP key": Cipher.runEvpkdf,
"RC4": Cipher.runRc4,
"RC4 Drop": Cipher.runRc4drop,
"RC2 Encrypt": Cipher.runRc2Enc,
"RC2 Decrypt": Cipher.runRc2Dec,
"Vigenère Encode": Cipher.runVigenereEnc,
"Vigenère Decode": Cipher.runVigenereDec,
"Bifid Cipher Encode": Cipher.runBifidEnc,