{{ define "title" }}PGP Keys{{ end }} {{ define "content" }}

PGP Keys

{{ range .Data.PGPKeys }} {{ end }}
ID Fingerprint Remove
{{ .ID }} {{ .Fingerprint }}

Add a PGP key

To associate a PGP key to your account, you must submit an armored copy your public key along with a signed proof. The signed proof contains your user ID, which can be found on the profile page.

$ gpg --armor --export-options export-minimal --export <fingerprint>
$ echo "{{ $.Data.ExpectedPGPKeyProofText }}" | gpg --clearsign --sign-with=<fingerprint>
{{ end }}