Remove SHA-1 warning, not a problem for HMAC

See https://www.schneier.com/blog/archives/2005/02/sha1_broken.html
v1
Aeris 2015-09-09 21:43:25 +02:00
parent 60a8a44c1a
commit 0ecc15cc79
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ module CryptCheck
ok = Proc.new { |n| self.send "#{n}?" }
{
success: %i(pfs).select { |n| ok.call n },
warning: %i(sha1).select { |n| ok.call n },
warning: %i().select { |n| ok.call n },
danger: %i(des3).select { |n| ok.call n },
error: %i(dss md5 psk srp anonymous null export des rc2 rc4).select { |n| ok.call n }
}