Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Corrected user specified RSA bit length
Browse files Browse the repository at this point in the history
  • Loading branch information
jjviscomi committed Aug 4, 2011
1 parent df1d84c commit 6457fdf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion setup/install.sh
Expand Up @@ -637,9 +637,21 @@ then
then
userKeySize=1024
else
if [ $tmp != 1024 -a $tmp != 2048 -a $tmp != 4096 ]
if [ "$tmp" == "1024" ]
then
userKeySize=1024
else
if [ "$tmp" == "2048" ]
then
userKeySize=2048
else
if [ "$tmp" == "4096" ]
then
userKeySize=4096
else
userKeySize=1024
fi
fi
fi
fi

Expand Down

0 comments on commit 6457fdf

Please sign in to comment.