1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-12-25 20:37:59 +01:00

Document that PublicKeyAlgorithm EdDsa is only for OpenPGP v4

This commit is contained in:
Paul Schaub 2024-02-02 18:00:17 +01:00
parent d650ae7371
commit 70da96b064
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -59,7 +59,10 @@ enum class PublicKeyAlgorithm(
/** Diffie-Hellman key exchange algorithm. */ /** Diffie-Hellman key exchange algorithm. */
DIFFIE_HELLMAN(21, false, true), DIFFIE_HELLMAN(21, false, true),
/** Digital Signature Algorithm based on twisted Edwards Curves. */ /**
* Digital Signature Algorithm based on twisted Edwards Curves.
* For OpenPGP v4 only.
*/
EDDSA(22, true, false), EDDSA(22, true, false),
; ;