This website works better with JavaScript.
Home
Explore
Help
Sign In
aeris
/
cryptcheck
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix debug output
v1
Aeris
5 years ago
parent
67b2654e22
commit
92424828e1
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
lib/cryptcheck/tls/cipher.rb
+1
-0
lib/cryptcheck/tls/server.rb
+ 1
- 1
lib/cryptcheck/tls/cipher.rb
View File
@@ -23,7 +23,7 @@ module CryptCheck
attr_reader :protocol, :name, :size, :dh
def initialize(protocol, cipher, dh)
def initialize(protocol, cipher, dh
=nil
)
@protocol, @dh = protocol, dh
@name, _, @size = cipher
end
+ 1
- 0
lib/cryptcheck/tls/server.rb
View File
@@ -259,6 +259,7 @@ module CryptCheck
Logger.info { "#{Tls.colorize method} / #{cipher.colorize} : Supported#{dh}" }
cipher
rescue TLSException => e
cipher = Cipher.new method, cipher
Logger.debug { "#{Tls.colorize method} / #{cipher.colorize} : Not supported (#{e})" }
nil
end
Write
Preview
Loading…
Cancel
Save