WIP: add encrypt and decrypt operations

Currently the encrypt operation works only to my public key and not to
keys generated by the generate key pair operation. Probably something
wrong with the generate operation.
This commit is contained in:
Toby Lorne 2017-12-24 17:44:32 +00:00
parent 5a5ce1101b
commit db8955d90d
6 changed files with 1293 additions and 17 deletions

View file

@ -3880,6 +3880,34 @@ const OperationConfig = {
},
]
},
"PGP Encrypt": {
module: "PGP",
manualBake: true,
description: "",
inputType: "string",
outputType: "string",
args: [
{
name: "Public key",
type: "text",
value: ""
},
]
},
"PGP Decrypt": {
module: "PGP",
manualBake: true,
description: "",
inputType: "string",
outputType: "string",
args: [
{
name: "Private key",
type: "text",
value: ""
},
]
},
};