ArchLinux wiki page on GnuPG reads
Once a key has been submitted to a keyserver, it cannot be deleted from the server.
Does that mean that also the expiration date with which I published the key via gpg --send-keys key-id
cannot be changed?
ArchLinux wiki page on GnuPG reads
Once a key has been submitted to a keyserver, it cannot be deleted from the server.
Does that mean that also the expiration date with which I published the key via gpg --send-keys key-id
cannot be changed?
You can change the expiration date locally:
gpg --edit-key <your-key-id>
expire
#Now specify how long the key should be valid
save
Update the modified key on keyserver:
gpg --send-keys <your-key-id>
A key cannot be deleted, but it can be changed.