Browse Source

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>
lilik-openwrt-22.03
Toke Høiland-Jørgensen 6 years ago
committed by Toke Høiland-Jørgensen
parent
commit
71c7d30e00
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      net/acme/Makefile
  2. +1
    -1
      net/acme/files/acme-cbi.lua

+ 1
- 1
net/acme/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=acme
PKG_VERSION:=2.7.9
PKG_RELEASE:=5
PKG_RELEASE:=6
PKG_LICENSE:=GPLv3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz


+ 1
- 1
net/acme/files/acme-cbi.lua 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"


Loading…
Cancel
Save