mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 16:51:31 -04:00
Rename some PGP operations
+ "PGP Sign Cleartext" -> "Sign PGP Cleartext" + "PGP Verify Cleartext" -> "Verify PGP Cleartext" + "PGP Generate Key Pair" -> "Generate PGP Key Pair" + "PGP Add ASCII Armor" -> "Add PGP ASCII Armor" + "PGP Remove ASCII Armor" -> "Remove PGP ASCII Armor"
This commit is contained in:
parent
718c913bf8
commit
9a5511a8bc
3 changed files with 30 additions and 30 deletions
|
@ -96,11 +96,11 @@ var Categories = [
|
|||
"PGP Decrypt",
|
||||
"PGP Sign",
|
||||
"PGP Verify",
|
||||
"PGP Sign Cleartext",
|
||||
"PGP Verify Cleartext",
|
||||
"PGP Generate Key Pair",
|
||||
"PGP Add ASCII Armor",
|
||||
"PGP Remove ASCII Armor",
|
||||
"Sign PGP Cleartext",
|
||||
"Verify PGP Cleartext",
|
||||
"Generate PGP Key Pair",
|
||||
"Add PGP ASCII Armor",
|
||||
"Remove PGP ASCII Armor",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -116,11 +116,11 @@ var Categories = [
|
|||
"PGP Decrypt",
|
||||
"PGP Sign",
|
||||
"PGP Verify",
|
||||
"PGP Sign Cleartext",
|
||||
"PGP Verify Cleartext",
|
||||
"PGP Generate Key Pair",
|
||||
"PGP Add ASCII Armor",
|
||||
"PGP Remove ASCII Armor",
|
||||
"Sign PGP Cleartext",
|
||||
"Verify PGP Cleartext",
|
||||
"Generate PGP Key Pair",
|
||||
"Add PGP ASCII Armor",
|
||||
"Remove PGP ASCII Armor",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -3230,7 +3230,7 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"PGP Sign Cleartext": {
|
||||
"Sign PGP Cleartext": {
|
||||
description: "Input: An ASCII-Armored PGP private key (and optionally, the password needed to decrypt the private key).<br><br>This operation uses PGP to produce a digital signature.<br><br>Pretty Good Privacy is an encryption standard (OpenPGP) used for encrypting, decrypting, and signing messages.<br><br>This function relies on OpenPGP.js for the implementation of PGP.<br><br>See more at https://openpgpjs.org/",
|
||||
run: PGP.runSignCleartext,
|
||||
inputType: "string",
|
||||
|
@ -3248,7 +3248,7 @@ var OperationConfig = {
|
|||
},
|
||||
]
|
||||
},
|
||||
"PGP Verify Cleartext": {
|
||||
"Verify PGP Cleartext": {
|
||||
description: "Input: An ASCII-Armored PGP public key.<br><br>This operation uses PGP to verify a cleartext digital signature.<br><br>Pretty Good Privacy is an encryption standard (OpenPGP) used for encrypting, decrypting, and signing messages.<br><br>This function relies on OpenPGP.js for the implementation of PGP.<br><br>See more at https://openpgpjs.org/",
|
||||
run: PGP.runVerifyCleartext,
|
||||
inputType: "string",
|
||||
|
@ -3266,7 +3266,7 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"PGP Generate Key Pair": {
|
||||
"Generate PGP Key Pair": {
|
||||
description: "Input is ignored.<br><br>This operation generates a PGP key pair.<br><br>Pretty Good Privacy is an encryption standard (OpenPGP) used for encrypting, decrypting, and signing messages.<br><br>This function relies on OpenPGP.js for the implementation of PGP.<br><br>See more at https://openpgpjs.org/",
|
||||
run: PGP.runGenKeyPair,
|
||||
inputType: "string",
|
||||
|
@ -3294,7 +3294,7 @@ var OperationConfig = {
|
|||
},
|
||||
]
|
||||
},
|
||||
"PGP Add ASCII Armor": {
|
||||
"Add PGP ASCII Armor": {
|
||||
description: "",
|
||||
run: PGP.runAddArmor,
|
||||
inputType: "byteArray",
|
||||
|
@ -3307,7 +3307,7 @@ var OperationConfig = {
|
|||
},
|
||||
],
|
||||
},
|
||||
"PGP Remove ASCII Armor": {
|
||||
"Remove PGP ASCII Armor": {
|
||||
description: "",
|
||||
run: PGP.runRemoveArmor,
|
||||
inputType: "string",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue