Managing encrypted files
When handling sensitive data is common, some fields or even the entire file is encrypted. It is comprehensive when this file security measure is implemented since sensitive data can expose the life of users. After all, encryption is the process of converting information into code that hides the original content.
Nonetheless, we must still ingest and process these encrypted files in our data pipelines. To be able to do so, we need to understand a bit more about how encryption works and how it is done.
In this recipe, we will decrypt a GnuPG-encrypted (where GnuPG stands for GNU Privacy Guard) file using Python libraries and best practices.
Getting ready
Before jumping into the fun part, we must install the GnuPG library on our local machine and download the encrypted dataset.
You will need two installations for the GnuPG file – one for the operating system (OS) and another for a Python package. This because the Python package requires...