class SSLyze::XML::Resum
Represents the `<resum>` XML
element.
@since 1.0.0
Public Instance Methods
session_resumption_with_session_ids()
click to toggle source
Parses the `<sessionResumptionWithSessionIDs>` XML
element.
@return [SessionResumptionWithSessionIDs, nil]
# File lib/sslyze/xml/resum.rb, line 19 def session_resumption_with_session_ids @session_resumption_with_session_ids ||= if (element = @node.at_xpath('sessionResumptionWithSessionIDs')) SessionResumptionWithSessionIDs.new(element) end end
Also aliased as: with_session_ids
session_resumption_with_tls_tickets()
click to toggle source
Parses the `<sessionResumptionWithTLSTickets>` XML
element.
@return [SessionResumptionWithTLSTickets, nil]
# File lib/sslyze/xml/resum.rb, line 32 def session_resumption_with_tls_tickets @session_resumption_with_tls_tickets ||= if (element = @node.at_xpath('sessionResumptionWithTLSTickets')) SessionResumptionWithTLSTickets.new(element) end end
Also aliased as: with_tls_tickets