mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-24 11:57:59 +01:00
Document that PublicKeyAlgorithm EdDsa is only for OpenPGP v4
This commit is contained in:
parent
d650ae7371
commit
70da96b064
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ enum class PublicKeyAlgorithm(
|
|||
/** Diffie-Hellman key exchange algorithm. */
|
||||
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),
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue