Locate, decrypt, and extract data in the Secure Processing Environment (SPE) using OpenSSL and tar commands.
Find the data
Find the uploaded data within the /srv/in/<project-name> directory:
cd /srv/in/<project-name>
Decrypt the data
Decrypt the data using OpenSSL, and enter the password to decrypt when prompted:
openssl aes-256-cbc -d -pbkdf2 -in <your-data.tar>.enc -out <your-data.tar>
Verify the decryption by listing the contents of the tar file:
tar tvf <your-data.tar>
Extract the data
Extract the decrypted files from the tar archive:
tar xvf <your-data.tar>
This command extracts the files from <your-data.tar> into the current directory.