Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- module CryptCheck
- module Tls
- module Https
- class Grade < Tls::Grade
- private
- def success
- super
- @success << :hsts if @server.hsts?
- @success << :hsts_long if @server.hsts_long?
- end
-
- def all_success
- super + %i(hsts hsts_long)
- end
- end
- end
- end
- end
|