]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Revert changes from FS-5719, You'll have to make these changes yourself locally if...
authorBrian West <brian@freeswitch.org>
Fri, 18 Jul 2014 12:52:26 +0000 (07:52 -0500)
committerBrian West <brian@freeswitch.org>
Fri, 18 Jul 2014 12:52:26 +0000 (07:52 -0500)
scripts/gentls_cert.in

index f2e4cd5a99d5792ba0b5a367adf995fa1179f23a..49b3940d5d0da3d9fe4c31e4c2a6853c9d06775c 100644 (file)
@@ -87,9 +87,8 @@ setup_ca() {
                "${CONFDIR}/CA/config.tpl" \
                        > "${TMPFILE}.cfg" || exit 1
 
-       openssl ecparam -name secp160r2 -out CA_CURVE.pem
        openssl req -out "${CONFDIR}/CA/cacert.pem" \
-               -new -x509 -keyout "${CONFDIR}/CA/cakey.pem" -newkey ec:CA_CURVE.pem \
+               -new -x509 -keyout "${CONFDIR}/CA/cakey.pem" \
                -config "${TMPFILE}.cfg" -nodes -days ${DAYS} -sha1 >/dev/null || exit 1
        cat "${CONFDIR}/CA/cacert.pem" > "${CONFDIR}/cafile.pem"
        cp $TMPFILE.cfg /tmp/ssl.cfg
@@ -131,7 +130,7 @@ generate_cert() {
                        > "${TMPFILE}.cfg" || exit 1
 
        openssl req -new -out "${TMPFILE}.req" \
-               -newkey ec:CA_CURVE.pem -keyout "${TMPFILE}.key" \
+               -newkey rsa:${KEY_SIZE} -keyout "${TMPFILE}.key" \
                -config "${TMPFILE}.cfg" -nodes -sha1 >/dev/null || exit 1
 
        openssl x509 -req -CAkey "${CONFDIR}/CA/cakey.pem" -CA "${CONFDIR}/CA/cacert.pem" -CAcreateserial \
@@ -157,6 +156,7 @@ remove_ca() {
 }
 OUTFILESET="0"
 command="$1"
+shift
 
 while [ $# -gt 0 ]; do
        case $1 in