Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
aeris
/
cryptcheck
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Fix debug output
v1
Aeris
5 anni fa
parent
67b2654e22
commit
92424828e1
2 ha cambiato i file
con
2 aggiunte
e
1 eliminazioni
Visualizzazione separata
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
Vedi 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
Vedi 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…
Annulla
Salva