Explaining output of GPG –export/–export-private-key key_id vs key_id!
I am a newcomer to GPG, and wanted to compare different ways of exporting keys, so I wrote the following shell script:
#!/bin/bash
for key in "FE…" "17.." "BB.."; do # key_ids are trimmed here
echo &quo… Continue reading Explaining output of GPG –export/–export-private-key key_id vs key_id!