Generating a PGP Key
If you don't already have GnuPG installed, you'll need to download and install it from:Â http://www.gnupg.org/download/
Generate the PGP key pair:
This is an interactive process and you will be prompted for several pieces of information. For most elements, the defaults are fine. You will need to provide: name, email, comment, and a passphrase.
From the command line:
gpg --gen-key
GnuPG generates the PGP key pair (key pair: secret and public key).
Securely store or share the PGP secret key with members of your team.Â
gpg --export-secret-keys > keyfile.sec
Â
Verify the key generation by listing the keys:
gpg --list-keys
Â
Export the PGP public key by using the email address specified in the key generation:
gpg --export -a [user@domain.com]
This exports the PGP public key to the command line. You can now use the key in GradesFirst.
Copy the entire content of the key from the command line including the ---- lines at the beginning and the end. Provide this information to your GradesFirst Client Success Manager, or enter it in the Data Exports configuration screen in the GradesFirst Admin interface.