gopenpgp
gopenpgp copied to clipboard
Parameterize expiration for generation of keys
trafficstars
When generating keys (https://github.com/ProtonMail/gopenpgp#generate-key), there are no parameters to set the expiration date for the PGP keys.
There seems to be SigLifetimeSecs, KeyLifetimeSecs in the packet signature, but is not implemented anywhere.
Can we get this feature? Happy to help with a PR potentially.
Hi @klische, your contribution would be more than welcome.
I'd personally add a function in crypto/key.go:
func GenerateKeyWithExpiration(name, email string, keyType string, bits int, expiration int64) (*Key, error)