Check for PSK and SRP ciphers

new-scoring
aeris 2016-12-17 14:40:22 +01:00
parent 299725996b
commit dbc58944ac
1 changed files with 2 additions and 0 deletions

View File

@ -100,6 +100,8 @@ module CryptCheck
end
CHECKS = [
[:psk, Proc.new { |s| s.psk? }, :critical],
[:srp, Proc.new { |s| s.srp? }, :critical],
[:dss, Proc.new { |s| s.dss? }, :critical],
[:anonymous, Proc.new { |s| s.anonymous? }, :critical],
[:null, Proc.new { |s| s.null? }, :critical],