fix pubkey quality test

This commit is contained in:
Julien Vehent 2015-09-18 14:49:51 -04:00
parent 3dd0f58f4c
commit 8a03b8d4e7
1 changed files with 1 additions and 2 deletions

View File

@ -751,10 +751,9 @@ display_results_in_terminal() {
done|column -t
echo
pubkey_eval="KO"
if [[ ! -z $pubkey ]]; then
if (( $pubkey > 2047 )); then
pubkey_eval="OK"
fi
if [[ ($sigalg =~ RSA && $pubkey -gt 2047) || ($sigalg =~ DSA && $pubkey -gt 255) ]]; then
fi
sigalg_eval="OK"
if [[ $sigalg =~ md5|sha1 ]]; then