...
View file |
---|
name | Concur File Transfer Guide.pdf |
---|
height | 250 |
---|
|
Encryption
Files must be OpenPGP encrypted so it is necessary to obtain Concur's public key to encrypt files sent to Concur and to generate an acsii armored public key file that is subsequently uploaded to Concur to decrypt files recieved. Concur supportedsOpenPGP complient software from the following http://www.pgp.com or http://www.gnupg.org.
Code Block |
---|
|
#Generate key pairs
gpg --expert --full-generate-key
#Adding Concur's public key to key file
gpg --import concursolutions.asc
# List public keys
gpg --list-keys
# List private keys
gpg --list-secret-keys
# creating ascii armored gpg keys
gpg -a --export [key user name] > [file name].asc |