luci-app-uhttpd: Bump default key size to 2048 bits for certificates
More about the currently recommended key sizes: https://www.keylength.com/en/compare/ Signed-off-by: Alexander Schlarb <alexander@ninetailed.ninja> Modified to maintain the old minimum of 1024 bits for low-end devices. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
parent
ab64856938
commit
ac8a957191
1 changed files with 2 additions and 2 deletions
|
@ -212,7 +212,7 @@ o.default = 730
|
|||
o.datatype = "uinteger"
|
||||
|
||||
o = s:option(Value, "bits", translate("Length of key in bits"))
|
||||
o.default = 1024
|
||||
o.default = 2048
|
||||
o.datatype = "min(1024)"
|
||||
|
||||
o = s:option(Value, "commonname", translate("Server Hostname"), translate("a.k.a CommonName"))
|
||||
|
@ -225,6 +225,6 @@ o = s:option(Value, "state", translate("State"))
|
|||
o.default = "Unknown"
|
||||
|
||||
o = s:option(Value, "location", translate("Location"))
|
||||
o.default = "Somewhere"
|
||||
o.default = "Unknown"
|
||||
|
||||
return m
|
||||
|
|
Loading…
Reference in a new issue