Compare commits

...

2 Commits

Author SHA1 Message Date
drduh 12b232d28f
Merge pull request #423 from Xronophobe/fix/quick-add-key-with-fpr
update gpg --quick-add-key commands
2024-03-11 16:10:32 +00:00
Csanad Beres 623a60cc83 update gpg --quick-add-key commands
it seems to be only accepting fingerprints and rejecting key ID-s
2024-03-07 15:17:14 +01:00
1 changed files with 5 additions and 4 deletions

View File

@ -2712,16 +2712,17 @@ Verify the Certify key:
gpg --list-key
```
Export the Certify key ID and create the Subkeys:
Export the Certify key ID, extract its fingerprint and create the Subkeys:
```console
export KEYID=0xF0F2CFEB04341FB5
KEYFPR=$(gpg --fingerprint "$KEYID" | grep -Eo '([0-9A-F][0-9A-F ]{49})' | head -n 1 | tr -d ' ')
gpg --quick-add-key "$KEYID" rsa4096 sign 2y
gpg --quick-add-key "$KEYFPR" rsa4096 sign 2y
gpg --quick-add-key "$KEYID" rsa4096 encrypt 2y
gpg --quick-add-key "$KEYFPR" rsa4096 encrypt 2y
gpg --quick-add-key "$KEYID" rsa4096 auth 2y
gpg --quick-add-key "$KEYFPR" rsa4096 auth 2y
```
# Additional resources