class SSLyze::XML::Fallback

Represents the `<fallback>` XML element.

@since 1.0.0

Public Instance Methods

is_supported?() click to toggle source

@see TLSFallbackSCSV#is_supported?

# File lib/sslyze/xml/fallback.rb, line 26
def is_supported?
  tls_fallback_scsv.is_supported?
end
Also aliased as: supported?
supported?()
Alias for: is_supported?
tls_fallback_scsv() click to toggle source

Parses the `<tlsFallbackScsv>` XML element.

@return [TLSFallbackSCSV]

# File lib/sslyze/xml/fallback.rb, line 17
def tls_fallback_scsv
  @tls_fallback_scsv ||= TLSFallbackSCSV.new(
    @node.at_xpath('tlsFallbackScsv')
  )
end