mirror of
https://github.com/mozilla/cipherscan.git
synced 2026-02-06 07:05:15 +01:00
fix pubkey quality test
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user