1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-12-05 03:41:07 +01:00

sop generate-key: Add descriptions for profiles

This commit is contained in:
Paul Schaub 2025-11-04 19:44:57 +01:00
parent 3ff7292cff
commit 5faf04ae4b
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -35,12 +35,18 @@ class GenerateKeyImpl(private val api: PGPainless) : GenerateKey {
companion object {
@JvmField
val CURVE25519_PROFILE =
Profile("draft-koch-eddsa-for-openpgp-00", "OpenPGP v4 keys over Curve25519")
Profile("draft-koch-eddsa-for-openpgp-00", "OpenPGP v4 keys over legacy Curve25519")
@JvmField
val RFC4880_RSA4096_PROFILE = Profile("rfc4880-rsa4096", "OpenPGP v4 keys with RSA 4096")
@JvmField val RFC6637_NIST_P256_PROFILE = Profile("rfc6637-nist-p256")
@JvmField val RFC6637_NIST_P384_PROFILE = Profile("rfc6637-nist-p384")
@JvmField val RFC6637_NIST_P521_PROFILE = Profile("rfc6637-nist-p521")
@JvmField
val RFC6637_NIST_P256_PROFILE =
Profile("rfc6637-nist-p256", "OpenPGP v4 keys over ECC curve NIST-p256")
@JvmField
val RFC6637_NIST_P384_PROFILE =
Profile("rfc6637-nist-p384", "OpenPGP v4 keys over ECC curve NIST-p384")
@JvmField
val RFC6637_NIST_P521_PROFILE =
Profile("rfc6637-nist-p521", "OpenPGP v4 keys over ECC curve NIST-p521")
@JvmField
val RFC9580_CURVE25519_PROFILE =
Profile("rfc9580-curve25519", "OpenPGP v6 keys over Curve25519")