From d89b5dc1509c66ccbed1dbc7ed0e09264ea3179e Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 3 Jan 2015 14:58:37 +0100 Subject: RSA key for HTTPs server set to 1024 bits instead of 512 bits --- release/src/router/httpd/gencert.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/src/router/httpd/gencert.sh b/release/src/router/httpd/gencert.sh index 8a1f837e..9aeae685 100755 --- a/release/src/router/httpd/gencert.sh +++ b/release/src/router/httpd/gencert.sh @@ -18,7 +18,7 @@ for CN in $NVCN; do done # create the key and certificate request -openssl req -new -out /tmp/cert.csr -config openssl.config -keyout /tmp/privkey.pem -newkey rsa:512 -passout pass:password +openssl req -new -out /tmp/cert.csr -config openssl.config -keyout /tmp/privkey.pem -newkey rsa:1024 -passout pass:password # remove the passphrase from the key openssl rsa -in /tmp/privkey.pem -out key.pem -passin pass:password # convert the certificate request into a signed certificate -- cgit v1.2.3-54-g00ecf