CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
time: updated source
[crossrootfs.git] / openssl / mksslcert.sh
index 9cca3fb81754fcfb5f21ab615fbdf13b5a2c1525..4b10ef90a6a6ab2a6d2f5b244e775ab2218e52a3 100755 (executable)
@@ -6,7 +6,7 @@
 # the local hostname or the given one
 # Fallback to localhost if not set.
 #
-# Jürgen Daubert, jue at jue dot li
+# Juergen Daubert, jue at crux dot nu
 
 
 print_help() {
@@ -29,9 +29,9 @@ main() {
                FQDN="$3"
        fi
        INFO=".\n.\n.\n.\n.\n$FQDN\nroot@$FQDN"
-       OPTS="req -new -nodes -x509 -days 365 -newkey rsa:1024"
+       OPTS="req -new -nodes -x509 -days 365 -newkey rsa:2048"
        
-       echo -e $INFO | openssl $OPTS -out $CRT -keyout $KEY 2> /dev/null
+       printf "$INFO\n" | openssl $OPTS -out $CRT -keyout $KEY 2> /dev/null
        
        if [ $? -ne 0 ]; then
                echo "Error: creating of certificate failed"