Check for PSK and SRP ciphers
parent
299725996b
commit
dbc58944ac
|
@ -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],
|
||||
|
|
Loading…
Reference in New Issue