File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -131,13 +131,14 @@ else
131131 exit ${Abort}
132132 fi
133133
134+ dialog --infobox " Generating RSA keys, please wait..." 3 40
134135 if [ " ${PLAIN_TEXT_PASSWORD} " ] ; then
135136
136137 # Generate recovery public/private key using plain text password
137138 # as a passphrase.
138139 echo -n " ${PLAIN_TEXT_PASSWORD} " | \
139140 openssl genrsa -des3 -out " ${RECOVERY_PRIVATE_KEY_CONF} " \
140- -passout stdin 2048 || \
141+ -passout stdin 8192 || \
141142 exit ${Abort}
142143
143144 echo -n " ${PLAIN_TEXT_PASSWORD} " | \
148149 elif [ " ${DEFER_PASSWORD} " = " true" ] ; then
149150
150151 # Generate recovery public/private key without a passphrase.
151- openssl genrsa -out " ${RECOVERY_PRIVATE_KEY_CONF} " 2048 || \
152+ openssl genrsa -out " ${RECOVERY_PRIVATE_KEY_CONF} " 8192 || \
152153 exit ${Abort}
153154
154155 openssl rsa -pubout -out " ${RECOVERY_PUBLIC_KEY_CONF} " \
You can’t perform that action at this time.
0 commit comments