Allow keys greater than 4096 bit

This commit is contained in:
m 2015-04-13 17:11:53 +02:00
parent 7d38b27c05
commit a3add44c29
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ do
do
valid_key=$(ssh-keygen -l -f ${keyfile})
if [ "$?" -eq "0" ]; then
if [ $(echo "${valid_key}" | cut -d" " -f1) -ne "4096" ]; then
echo "Key size of key ${keyfile} not equal to 4096. Not adding it to key database." >&2
if [ $(echo "${valid_key}" | cut -d" " -f1) -lt "4096" ]; then
echo "Size of key ${keyfile} is less than 4096. Not adding it to key database." >&2
continue
fi
fi