You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per the accepted #44226 proposal and due to lack of maintenance, the golang.org/x/crypto/openpgp package is now frozen and deprecated. No new changes will be accepted except for security fixes. The package will not be removed.
If this is a security issue, please email [email protected] and we will assess it and provide a fix.
If you're looking for alternatives, consider the crypto/ed25519 package for simple signatures, golang.org/x/mod/sumdb/note for inline signatures, or filippo.io/age for encryption. You can read a summary of OpenPGP issues and alternatives here.
If you are required to interoperate with OpenPGP systems and need a maintained package, we suggest considering one of multiple community forks of golang.org/x/crypto/openpgp. We don't endorse any specific one.
What version of Go are you using (
go version
)?1.11
Does this issue reproduce with the latest release?
Aye.
What operating system and processor architecture are you using (
go env
)?What did you do?
Try to use
openpgp.ReadEntity
on a keyring containing V3 signatures (for instance http://keyserver.mattrude.com/dump/current/sks-dump-0000.pgp).What did you expect to see?
No error.
What did you see instead?
This happens because of this line: https://github.com/golang/crypto/blob/master/openpgp/keys.go#L442
*packet.SignatureV3
("V3 signatures not supported by Entity").SignatureV3
field alongsideSignature
fields (just likeMessageDetails
)What do you think?
The text was updated successfully, but these errors were encountered: