File PGP Encryption for Inbound Data Types file-pgp-encryption-for-inbound-data-types
You can encrypt data files with PGP encryption when sending them to Audience Manager.
.gz
).Follow the steps outlined below to encrypt inbound data files.
-
Download the Audience Manager public key.
-
Import the public key to your trusted store.
For example, if you use GPG, the command could be similar to the following:
gpg --import adobe_pgp.pub
-
Validate that the key has been imported correctly by running the following command:
gpg --list-keys
You should see a message similar to the following:
code language-none pub 4096R/8496CE32 2013-11-01 uid Adobe AudienceManager sub 4096R/E3F2A363 2013-11-01
-
Encrypt the inbound data using the following command:
gpg --recipient "Adobe AudienceManager" --cipher-algo AES --output $output.gpg --encrypt $inbound
All encrypted data must use
.pgp
or.gpg
as the file extension (e.g.ftp_dpm_100_123456789.sync.pgp
orftp_dpm_100_123456789.overwrite.gpg
).note note NOTE Audience Manager supports only the Advanced Encryption Standard (AES) data-encryption algorithm. Audience Manager supports any key size.