diff --git a/src/tls/cockpit-certificate-helper.in b/src/tls/cockpit-certificate-helper.in index c4b5922c785c..32fa8bd5223b 100644 --- a/src/tls/cockpit-certificate-helper.in +++ b/src/tls/cockpit-certificate-helper.in @@ -30,7 +30,6 @@ install_key() { selfsign_sscg() { sscg --quiet \ --lifetime "${DAYS}" \ - --key-strength 2048 \ --cert-key-file "${KEYFILE}" \ --cert-file "${CERTFILE}" \ --ca-file "${CA_FILE}" \ @@ -43,7 +42,7 @@ selfsign_sscg() { selfsign_openssl() { openssl req -x509 \ -days "${DAYS}" \ - -newkey rsa:2048 \ + -newkey rsa \ -keyout "${KEYFILE}" \ -keyform PEM \ -nodes \