diff --git a/pgpainless-core/src/main/kotlin/org/pgpainless/algorithm/PublicKeyAlgorithm.kt b/pgpainless-core/src/main/kotlin/org/pgpainless/algorithm/PublicKeyAlgorithm.kt index 4a218673..f7b371a7 100644 --- a/pgpainless-core/src/main/kotlin/org/pgpainless/algorithm/PublicKeyAlgorithm.kt +++ b/pgpainless-core/src/main/kotlin/org/pgpainless/algorithm/PublicKeyAlgorithm.kt @@ -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), ;