acme: Remove 8192 bits certificate option

This is not supported by letsencrypt, so issuing the certificate will fail.
Instead, add 3072 bits as an intermediate option.

Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
This commit is contained in:
Toke Høiland-Jørgensen
2019-01-08 13:07:06 +01:00
committed by Toke Høiland-Jørgensen
parent 5a1f294667
commit 71c7d30e00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -56,8 +56,8 @@ us.rmempty = false
kl = cs:option(ListValue, "keylength", translate("Key size"),
translate("Key size (and type) for the generated certificate."))
kl:value("2048", "RSA 2048 bits")
kl:value("3072", "RSA 3072 bits")
kl:value("4096", "RSA 4096 bits")
kl:value("8192", "RSA 8192 bits")
kl:value("ec-256", "ECC 256 bits")
kl:value("ec-384", "ECC 384 bits")
kl.default = "2048"