How to deploy the PGP Decryption Add-On for SFTP Gateway

PGP Decryption

One of SFTP Gateway’s greatest advantages is its versatility; through the use of add-ons and custom solutions, the functionality of SFTP Gateway can be expanded to make tasks more efficient and user-friendly.

For instance, the PGP Decryption add-on automates the process of downloading and decrypting a PGP encrypted file and then uploads the new decrypted file. In this article, I will walkthrough the process of deploying the PGP Decryption add-on for SFTP Gateway on AWS, Azure, and GCP.

Jump to:

What is PGP?

PGP stands for Pretty Good Privacy and is commonly used to encrypt emails and files. PGP uses public-key cryptography, which means that public keys are used to encrypt data while private keys are used to decrypt data.

There are multiple implementations of the OpenPGP standard, one of which is GnuPG, or GPG for short. The PGP Decryption Add-On for SFTP Gateway reads the private key and uses GPG to automatically decrypt incoming files.

Installing the PGP Decryption Add-on in SFTP Gateway for AWS

 

Requirements

Before starting, double-check that you have the following:

  • git installed
  • docker installed
  • AWS cli installed
  • An AWS account that can:
    • Create IAM roles
    • Create Lambda functions
    • Create ECR repositories
    • Push to ECR repositories
    • Create S3 buckets

Preparation

Before setting up the Lambda, we’re going to create some resources that you’ll need later on in the process.

First, we need to create an IAM role for the Lambda function.

  1. Login to the AWS console
  2. Go to the IAM service
  3. Press “Create Role”
  4. Select the “Lambda” use case and press “Next”
  5. Search for and then select the permission”AWSLambdaBasicExecutionRole
  6. It also needs a custom policy with permissions to:
    • ListBucket
    • PutObject
    • GetObject
    • DeleteObject
  7. Press “Next”
  8. Give the role a name then press “Create role”

This role will be given to the Lambda function in order to give it permissions to upload and download files, as well as to write to CloudWatch logs.

Next, we need to create S3 buckets that will be used in the Lambda. If the buckets you wish to use are already created, skip this step.

You will need a bucket for the encrypted files, one for decrypted files, and one for the encryption key file. Although it is not recommended, you may choose the same bucket for multiple or for all three positions. Remember the bucket names for later.

To create a new bucket:

  1. Navigate to the S3 service
  2. Press “Create bucket”
  3. Give it a name and press “Create bucket” at the bottom

Finally, we need to create a new ECR repository for these container images.

  1. In the AWS console, goto the ECR service
  2. Press “New repository”
  3. Give this new repository a name, then press “Create repository”

This repository will store our soon-to-be-created container images. The repository’s page has a list of commands which we want to use later, so stay on this page.

 

Build and Push Container Image

Since we will use Lambda to run a container image, we must create the container image first and push it to ECR.

Start by cloning the source repository to your local computer.

Make sure you are authenticated to the AWS cli. Once you are logged in to AWS, you can login to docker

  1. Go back to your repository in the AWS console.
  2. Press “View push commands” button and copy it
  3. Return to the terminal where you logged in to the AWS cli then paste and execute the command

The command should look something like:

aws ecr get-login-password --region {REGION} | docker login --username AWS --password-stdin {ACCOUNT ID}.dkr.ecr.{REGION}.amazonaws.com

 

Now we can build and tag a new container image, which will then be pushed to ECR. Use the commands:

docker build -t {ACCOUNT ID}.dkr.ecr.{REGION}.amazonaws.com/{ECR REPO NAME} -f ./src/main/AWSDockerfile ./src/main
docker push {ACCOUNT ID}.dkr.ecr.{REGION}.amazonaws.com/{ECR REPO NAME}

After this completes, the image should be visible in ECR and ready for use in the Lambda.

Create Lambda

All the setup is done and the container is pushed to ECR, so now it is time to create the Lambda function.

  1. Go to the Lambda service in the AWS console.
  2. Press “Create function”
  3. Select the option “Container image” at the top
  4. Give the Lambda a name
  5. Select the repository you made earlier and choose the latest container image
  6. Make sure to open the dropdown menu, set the execution role to “use existing”, and select the one you made earlier
  7. Press “Create function”

After a minute, the function should be created. However, we still need to set its triggers and configuration settings.

First, let’s add the triggers:

  1. Inside the lambda, press “Add trigger”
  2. Select “S3”
  3. In the “Bucket” selection, choose the bucket to be used for encrypted files
  4. Make sure “event type” is set to “All object create events”
  5. Set the suffix to “.pgp”
  6. Acknowledge the warning then press “Add”
  7. Repeat this step and add a new trigger with the same settings except with a suffix of “.gpg”

Next, we’ll set the general configuration settings:

  1. From the lambda page, click the “Configuration” tab and then the “General configuration” section
  2. Press “Edit”
  3. Set the memory to 2048 MB
  4. Set the ephemeral storage to 5120MB
  5. Set the timeout to 1 minute
  6. Press “Save”

You may set the memory, timeout, and ephemeral storage to any value you wish, but I recommend 2 GB for memory, 5 GB for ephemeral storage, and 60 seconds for the timeout.

Finally, we have to add environment variables:

    1. From the lambda page, click the “Configuration” tab and then the “Environment variables” section
    2. Press “Edit” and press “Add environment variable” for each environment variable to be added. The following must be set:
      • PGP_KEY_LOCATION – Name of the bucket which contains the encryption key file location
      • PGP_KEY_NAME – File-path to the encryption key file (including folders). EX: A file named “private.asc” in a folder named “keyfolder” would require PGP_KEY_NAME to be set to “keyfolder/private.asc”.
      • PGP_PASSPHRASE – Passphrase associated with the encryption key.
      • DECRYPTED_DONE_LOCATION – Name of bucket where decrypted files should be moved to after decryption.

Installing the PGP Decryption Add-on in SFTP Gateway for Azure

Requirements

Before starting, double check that you have the following:

  • git installed
  • docker installed
  • A Docker Hub account
  • An Azure account that can:
    • Create a resource group
    • Create a storage account
    • Create a function app
    • Grant IAM permissions

Preparation

Before setting up the Function App, we’re going to create some resources that you’ll need later on in the process.

First, create a resource group to contain all of these new resources. If you have an existing resource group which you wish to use, skip this step.

  1. Login to the Azure console
  2. Go to the resource groups service
  3. Press “Create”
  4. Give the new group a name
  5. Press “Review + create” then press “Create”

Now that you have a resource group, we need to create a storage account inside of it. If you have an existing storage account which you wish to use, skip this step.

  1. Go to the storage account service
  2. Press “Create”
  3. Choose the resource group you made in the previous step
  4. Give the new storage account a name
  5. Press “Review + create” then press “Create”

Lastly, your storage account needs containers. You will need a container for the encrypted files, one for decrypted files, and one for the encryption key file. Although it is not recommended, you may choose the same container for multiple or for all three positions. Remember the container names for later.

To create a new container:

  1. Open the storage account from the prior step
  2. Select the “Containers” section
  3. Press the “+ Container” button
  4. Give the new container a name
  5. Press “Create”

Build and Push Container Image

Since we will use Function App to run a container image, we must create a container image and push it to Docker Hub.

Clone the source repository to your local computer using git.

Now login to the docker cli with:

docker login --username {USERNAME} --password-stdin

Afterwards, build and push a container image with the following commands:

docker build -t {ACCOUNT NAME}/{REPO NAME} -f ./src/main/AzureDockerfile ./src/main
docker push {ACCOUNT NAME}/{REPO NAME}

After this command finishes, the image should be visible on Docker Hub; if so, you are ready to create the Function App.

Create Function App

Now that we have an image, it is time to create the Function App.

  1. Navigate to the Function App service and press “Create”
  2. Select the resource group
  3. Give the function app a name
  4. Select the “Docker Container” option
  5. Press “Review + create” then press “Create”

After a minute, the app should be visible. Now we need to configure it.

  1. Enter the new function app
  2. Scroll down and select the “App Service logs” section
  3. Set Application logging to “File System”. Make sure to hit save before moving on.
  4. Open the storage account you created
  5. Select the “Access Keys” section and copy the connection string for use in the environment variables
  6. Select the “Configuration” section and add environment variables. The following need to be set (make sure to hit save before moving on):
    • AZURE_STORAGE_CONNECTION_STRING – The connection string to the storage account
    • PGP_KEY_LOCATION – Name of the container which contains the encryption key file location
    • PGP_KEY_NAME – File-path to the encryption key file (including folders). EX: A file named “private.asc” in a folder named “keyfolder” would require PGP_KEY_NAME to be set to “keyfolder/private.asc”.
    • PGP_PASSPHRASE – Passphrase associated with the encryption key.
    • ENCRYPTED_SOURCE_LOCATION – Name of container where encrypted files are to be uploaded.
    • DECRYPTED_DONE_LOCATION – Name of container where decrypted files should be moved to after decryption.
  7. Select the “Deployment Center” section
  8. Change “Registry source” to “Docker Hub”
  9. Enter the image name and tag in the “Full Image Name and Tag” field
  10. Press “Save”

Installing the PGP Decryption Add-on in SFTP Gateway for GCP

 

Requirements

Before starting, double check that you have the following:

  • git installed
  • python 3.9 installed
  • A GCP account that can:
    • Create a service account
    • Create storage buckets
    • Give IAM permissions
    • Create a Google Function

Preparation

Before setting up the Google Function, we’re going to create some resources that you’ll need later on in the process.

First, we need a service account that has permissions to Cloud Storage

  1. Login to the Google Cloud console
  2. Go to “IAM & Admin” -> “Service Accounts”
  3. Press “Create Service Account”
  4. Give the new service account a name
  5. Press “Done”
  6. Open the service account you just created and copy its email address

There are 2 ways to give the service account the required permissions. Choose one of the options below:

  1. You can give the service account access to all current and future buckets
    1. Go to “IAM & Admin” -> “IAM”
    2. Press “Add”
    3. Paste the email into the “New principals” box
    4. Select “Cloud Storage” -> “Storage Object Admin” for the role
    5. Press Save.
  2. Alternatively, you can give the service account access to only the buckets which will be used. After each bucket is created (in the next step):
    1. Open the bucket’s page
    2. Select the permissions tab
    3. Press “Add”
    4. Paste the email into the “New principals” box
    5. Select “Cloud Storage” -> “Storage Object Admin” for the role
    6. Press Save and repeat for the other buckets that will be accessed.

Next, we need to setup the buckets that will be used in the function. You will need a bucket for the encrypted files, one for decrypted files, and one for the encryption key file. Although it is not recommended, you may choose the same bucket for multiple or for all three positions. Remember the bucket names for later.

To create a new bucket:

  1. Go to Cloud Storage
  2. Press “Create Bucket”
  3. Give the new bucket a name
  4. Press “Create”

Remember to add the permissions to the service account for each bucket if you chose option 2 earlier.

Now that the buckets have been created, upload the encryption key file to whichever bucket is to be the key bucket. Remember the file-path to the file if you place it in folders.

Create ZIP File

Google Functions allows you to upload a ZIP file containing the source code for a function and automatically unpacks it for you. In addition, we have created a python script that creates a ZIP file containing the files needed and in the proper structure for Google Functions.

Start by cloning the source repository to your local computer and navigate to project directory which should be sftpgw-pgp-lambda.

Execute the python script make_zip.py using the command:

python3 deploy/GCP/make_zip.py

This script will create a ZIP file named “deploy/GCP/pgpGoogleArchive.zip”. Remember where it is, since it will need to be uploaded in the next section.

Make Google Function

Now that we have finished preparations and created a ZIP file of our code, we can create the Google Function.

  1. Return to the Google Cloud console
  2. Go to Cloud Functions
  3. Press “Create Function”
  4. Give the new function a descriptive name

After giving it a name, set the trigger information

  1. Set the trigger type to “Cloud Storage”
  2. Set the event type to “On (finalizing/creating) file in the selected bucket”
  3. Press “Browse” and select the bucket encrypted files are to sent to
  4. Leave the “Retry on failure” box unchecked
  5. Press Save

This information is how the function is alerted when a file is uploaded. If you every want to change which bucket is being watched, edit this setting. Note that each function can only have one trigger.

Next is the runtime settings:

  1. Expand the menu labeled “Runtime, build, connections and security settings”
  2. Set “Memory allocated” to 2 GB
  3. Set “Timeout” to 60 seconds
  4. Open the dropdown menu labeled “Runtime service account” and select the service account you created earlier
  5. Scroll down and press “Add Variable” for each environment variable. The following must be set:
    • PGP_KEY_LOCATION – Name of the bucket which contains the encryption key file location
    • PGP_KEY_NAME – File-path to the encryption key file (including folders). EX: A file named “private.asc” in a folder named “keyfolder” would require PGP_KEY_NAME to be set to “keyfolder/private.asc”.
    • PGP_PASSPHRASE – Passphrase associated with the encryption key.
    • DECRYPTED_DONE_LOCATION – Name of bucket where decrypted files should be moved to after decryption.
  6. Scroll to the bottom and press “Next”

In the future, you may want to change the amount of memory available, the timeout duration, or the environment variables. If so, edit these settings.

Finally, we must select the runtime and entry point and upload the source code.

  1. Open the dropdown menu labeled “Runtime” and select “Python 3.9”
  2. Open the dropdown menu labeled “Source code” and select “ZIP Upload”
  3. Press browse and select the ZIP file made previously
  4. Choose any bucket for Stage bucket (such as the key-file bucket)
  5. Change the Entry Point to “invoke”
  6. Press Deploy
  7. Wait a few minutes until the function displays a green status indicator.

Further resources related to PGP Decryption and SFTP Gateway

If you want to see the PGP Decryption add-on in action, checkout this PGP Decryption Add-on video!

For other SFTP Gateway related videos, check out our YouTube channel.

If you don’t have the time or expertise to install SFTP Gateway add-ons, the Thorn Tech team can help. Check out our premier support option to learn how you can get help from cloud experts.

How to install git

How to install python

How to install docker

How to install aws cli

PGP Decryption Add-on source repository: https://github.com/ThornTechPublic/PGPDecryptionLambda

Get insights on SFTP Gateway, cloud computing and more, in your inbox.

Get smarter about all things tech. Sign up now!

Scroll to Top