After you process data in the Secure Processing Environment (SPE), ensure that you store and encrypt your output data before transferring it out of the environment.
Move the output data to the designated directory,
/srv/out:mv <path-to-your-data> /srv/outEncrypt the output data using AES-256 encryption via OpenSSL to ensure your data remains secure during transfer:
openssl enc -aes-256-cbc -pbkdf2 -salt -in <your-data>.tar -out <your-data>.tar.encNote: You will be prompted to set a password to encrypt the file. Enter a strong password of your choice. Then share the password with the appropriate reviewer. They will need it to decrypt the file.
Verify that the encrypted file is saved in the
/srv/outdirectory.