diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-25 17:42:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-25 17:42:25 +0000 |
commit | 565570cfd5dcd11bacd0e7a36d2abb0d6ea670b5 (patch) | |
tree | 689f3217e3de071febec81d9d2e3757e9c8b2d96 /package/network/services/uhttpd/files/uhttpd.init | |
parent | 57776e68ce7f065fbc96c439704de65d37be12db (diff) | |
download | mtk-20170518-565570cfd5dcd11bacd0e7a36d2abb0d6ea670b5.zip mtk-20170518-565570cfd5dcd11bacd0e7a36d2abb0d6ea670b5.tar.gz mtk-20170518-565570cfd5dcd11bacd0e7a36d2abb0d6ea670b5.tar.bz2 |
package/uhttpd: generate 2048 bit RSA key
RSA keys should be generated with sufficient length.
Using 1024 bits is considered unsafe.
In other packages the used key length is 2048 bits.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
SVN-Revision: 48494
Diffstat (limited to 'package/network/services/uhttpd/files/uhttpd.init')
-rwxr-xr-x | package/network/services/uhttpd/files/uhttpd.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/uhttpd/files/uhttpd.init b/package/network/services/uhttpd/files/uhttpd.init index add0924..4ca6c8d 100755 --- a/package/network/services/uhttpd/files/uhttpd.init +++ b/package/network/services/uhttpd/files/uhttpd.init @@ -45,7 +45,7 @@ generate_keys() { [ -x "$PX5G_BIN" ] && { $PX5G_BIN selfsigned -der \ - -days ${days:-730} -newkey rsa:${bits:-1024} -keyout "${UHTTPD_KEY}.new" -out "${UHTTPD_CERT}.new" \ + -days ${days:-730} -newkey rsa:${bits:-2048} -keyout "${UHTTPD_KEY}.new" -out "${UHTTPD_CERT}.new" \ -subj /C="${country:-DE}"/ST="${state:-Saxony}"/L="${location:-Leipzig}"/CN="${commonname:-OpenWrt}" sync mv "${UHTTPD_KEY}.new" "${UHTTPD_KEY}" |