2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2026-02-06 07:05:15 +01:00

Merge pull request #96 from tomato42/ecdsa-keys

fix coloring of cert key sizes
This commit is contained in:
Julien Vehent
2015-09-21 09:25:16 -04:00

View File

@@ -819,7 +819,7 @@ display_results_in_terminal() {
done|column -t
echo
if [[ ($sigalg =~ RSA && $pubkey -gt 2047) || ($sigalg =~ DSA && $pubkey -gt 255) ]]; then
if [[ ($sigalg =~ RSA && $pubkey -ge 2047) || ($sigalg =~ ECDSA && $pubkey -gt 255) ]]; then
pubkey="${c_green}${pubkey}${c_reset}"
else
pubkey="${c_red}${pubkey}${c_reset}"