Skip to content

Encryption Helper

A secure PGP encryption and decryption service powered by Bouncy Castle, enabling users to encrypt, decrypt, and manage sensitive data with OpenPGP standards.

Categories: helpers

Type: encryptionHelper/v1


Actions

Decrypt

Name: decrypt

Decrypts PGP encrypted file using private key and passphrase.

Properties

NameLabelTypeDescriptionRequired
privateKeyPrivate PGP KeySTRINGPrivate PGP key that will decrypt the file.true
fileFileFILE_ENTRYFile that will be decrypted.true
passphrasePassphraseSTRINGPassphrase that was used for encryption.true

Example JSON Structure

{
"label" : "Decrypt",
"name" : "decrypt",
"parameters" : {
"privateKey" : "",
"file" : {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
},
"passphrase" : ""
},
"type" : "encryptionHelper/v1/decrypt"
}

Output

Type: FILE_ENTRY

Properties

NameTypeDescription
extensionSTRING
mimeTypeSTRING
nameSTRING
urlSTRING

Output Example

{
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
}

Encrypt

Name: encrypt

PGP encrypts the file using public key.

Properties

NameLabelTypeDescriptionRequired
publicKeyPublic PGP KeySTRINGPublic PGP key of the recipient of the encrypted file.true
fileFileFILE_ENTRYFile that will be encrypted.true

Example JSON Structure

{
"label" : "Encrypt",
"name" : "encrypt",
"parameters" : {
"publicKey" : "",
"file" : {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
}
},
"type" : "encryptionHelper/v1/encrypt"
}

Output

Type: FILE_ENTRY

Properties

NameTypeDescription
extensionSTRING
mimeTypeSTRING
nameSTRING
urlSTRING

Output Example

{
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
}

Additional instructions