Resolving conflicts

This commit is contained in:
n1474335 2016-12-08 00:09:31 +00:00
commit e5854b6f86
3 changed files with 129 additions and 0 deletions

View file

@ -82,6 +82,8 @@ var Categories = [
"XOR Brute Force",
"Derive PBKDF2 key",
"Derive EVP key",
"Vigenere Encode",
"Vigenere Decode"
]
},
{

View file

@ -1325,6 +1325,36 @@ var OperationConfig = {
},
]
},
"Vigenere Encode": {
description: "Encodes string with the Vigenere cipher.",
run: Cipher.run_vigenc,
highlight: true,
highlight_reverse: true,
input_type: "string",
output_type: "string",
args: [
{
name: "Keyword",
type: "string",
value: Cipher.VIG_ENC_KEY
}
]
},
"Vigenere Decode": {
description: "Decodes string with the Vigenere cipher.",
run: Cipher.run_vigdec,
highlight: true,
highlight_reverse: true,
input_type: "string",
output_type: "string",
args: [
{
name: "Keyword",
type: "string",
value: Cipher.VIG_DEC_KEY
}
]
},
"Rotate right": {
description: "Rotates each byte to the right by the number of bits specified. Currently only supports 8-bit values.",
run: Rotate.run_rotr,