diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-11-30 11:18:17 +0200 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-11-30 11:18:17 +0200 |
commit | cc01abf5a4a1ed0938e716fd6dfaa7aed87faadb (patch) | |
tree | 410fd9b8a27ddecae1efe23ce8758f598f2cfcf7 /lib | |
parent | 8d4494fe6e232dc5f2e1e8cd12b666b837eca881 (diff) |
Don't do SHA1 signature testing by default.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/protocoltest/ssl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/ssl.rb b/lib/custodian/protocoltest/ssl.rb index 88f157c..426e73a 100644 --- a/lib/custodian/protocoltest/ssl.rb +++ b/lib/custodian/protocoltest/ssl.rb @@ -200,7 +200,7 @@ class SSLCheck self.errors << verbose("Failed to fetch certificate for #{self.domain}") return nil else - return ![verify_subject, verify_valid_from, verify_valid_to, verify_signature, verify_signing_algorithm ].any? { |r| false == r } + return ![verify_subject, verify_valid_from, verify_valid_to, verify_signature ].any? { |r| false == r } end end |