PGP Encrypt

The PGP encrypt action can be used to encrypt files as part of a workflow.

Required Fields

KeyDescription

type

The action type. Must be set as "pgp_encrypt"

pgp_encrypt_pub_key

The public key you want to encrypt the file with.

pgp_sign_with_private_key

(Optional) If you want to sign the file with a private key after encrypting it, set this field to your private key.

pgp_sign_with_private_key_password

(Optional) If you are signing the file with a private key, normally you need to specify a password for your key.

Example

{
    "type":"pgp_encrypt",
    "pgp_encrypt_pub_key":"--- BEGIN KEY ---... --- END KEY ---"
}

Last updated