1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 10:19:39 +02:00

Enable additional profiles

This commit is contained in:
Paul Schaub 2025-05-30 14:29:55 +02:00
parent 330e7eaee8
commit d8a1a272d9
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -52,7 +52,11 @@ class GenerateKeyImpl(private val api: PGPainless) : GenerateKey {
listOf( listOf(
CURVE25519_PROFILE.withAliases("default", "compatibility"), CURVE25519_PROFILE.withAliases("default", "compatibility"),
RFC4880_RSA4096_PROFILE, RFC4880_RSA4096_PROFILE,
RFC9580_CURVE25519_PROFILE.withAliases("performance", "security")) RFC6637_NIST_P256_PROFILE,
RFC6637_NIST_P384_PROFILE,
RFC6637_NIST_P521_PROFILE,
RFC9580_CURVE25519_PROFILE.withAliases("performance", "security"),
RFC9580_CURVE448_PROFILE)
} }
private val userIds = mutableSetOf<String>() private val userIds = mutableSetOf<String>()