gnupg 2.2.4 on latest Arch Linux.
Suppose I have two user IDs:
$ gpg2 --quick-generate-key "Test User" $ gpg2 --quick-generate-key "Test User2" $ gpg2 -K --with-keygrip ...... sec rsa2048 2018-02-26 [SC] [有效至:2020-02-26] 1E56D6CD7E9E3920601BE867AE10F5D401FFCA17 Keygrip = 8BD32228E591DC3E0554AE618A9EE64DC787DAB8 uid [ 绝对 ] Test User ssb rsa2048 2018-02-26 [E] Keygrip = B96D6AE201A2F09389DABA911790C17D125C487D sec rsa2048 2018-02-26 [SC] [有效至:2020-02-26] FFEED1B98823CF06F34EF482A125B337B844B269 Keygrip = C50AB859311ACA9DE17FAED93D4F2A9A8263559D uid [ 绝对 ] Test User 2 ssb rsa2048 2018-02-26 [E] Keygrip = 62A62D78ED1EBD94292E40BC9687C6078BFF6A08
For some reasons, I want to merge two IDs by adding TestUser2's keys as TestUser's subkeys. It can be done with gpg --expert --edit-key "Test User" and addkey command:
$ gpg2 --expert --edit-key "Test User" ...... gpg> addkey Please select what kind of key you want: ...... (13) Existing key Your selection? 13 Enter the keygrip: 62A62D78ED1EBD94292E40BC9687C6078BFF6A08 ......
Since I have merged the keys, I would like to delete unused "Test User 2" ID with --delete-keys commands:
$ gpg2 --delete-keys "Test User 2" ....... gpg: there is a secret key for public key "Test User 2"! gpg: use option "--delete-secret-keys" to delete it first.
Ok do it first:
$ gpg2 --delete-secret-keys "Test User 2" ...... sec rsa2048/A125B337B844B269 2018-02-26 Test User 2 Delete this key from the keyring? (y/N) y This is a secret key! - really delete? (y/N) y $ gpg2 --delete-keys "Test User 2"
Now check your keyring, "Test User 2" has been removed. But wait, previously imported secret subkeys are removed as well:
$ gpg2 -K sec rsa2048 2018-02-26 [SC] [有效至:2020-02-26] 1E56D6CD7E9E3920601BE867AE10F5D401FFCA17 uid [ 绝对 ] Test User ssb rsa2048 2018-02-26 [E] ssb# rsa2048 2018-02-26 [E]
Obviously, the problem is that gnupg cannot tell the difference between imported subkeys of Test User and original subkeys of Test User 2 becase they are exact the same key. But the behaviour is not expected by users and can result in unexpected loss of secret keys.
Maybe gnupg should check if the secret keys are used by other user IDs, or provide a option to delete pubkey without affecting secret keyring.