Class: SSLyze::XML::Fallback
- Defined in:
- lib/sslyze/xml/fallback.rb,
lib/sslyze/xml/fallback/tls_fallback_scsv.rb
Overview
Represents the <fallback>
XML element.
Defined Under Namespace
Classes: TLSFallbackSCSV
Instance Method Summary collapse
- #is_supported? ⇒ Boolean (also: #supported?)
-
#tls_fallback_scsv ⇒ TLSFallbackSCSV
Parses the
<tlsFallbackScsv>
XML element.
Methods inherited from Plugin
Methods included from Attributes::Exception
Methods included from Attributes::Title
Constructor Details
This class inherits a constructor from SSLyze::XML::Plugin
Instance Method Details
#is_supported? ⇒ Boolean Also known as: supported?
26 27 28 |
# File 'lib/sslyze/xml/fallback.rb', line 26 def is_supported? tls_fallback_scsv.is_supported? end |
#tls_fallback_scsv ⇒ TLSFallbackSCSV
Parses the <tlsFallbackScsv>
XML element.
17 18 19 20 21 |
# File 'lib/sslyze/xml/fallback.rb', line 17 def tls_fallback_scsv @tls_fallback_scsv ||= TLSFallbackSCSV.new( @node.at_xpath('tlsFallbackScsv') ) end |