Class: SSLyze::XML::Reneg
- Defined in:
- lib/sslyze/xml/reneg.rb,
lib/sslyze/xml/reneg/session_renegotiation.rb
Overview
Represents the <reneg>
element.
Defined Under Namespace
Classes: SessionRenegotiation
Instance Method Summary collapse
-
#session_renegotiation ⇒ SessionRenegotiation?
(also: #session)
Session Renegotiation information.
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
#session_renegotiation ⇒ SessionRenegotiation? Also known as: session
Session Renegotiation information.
18 19 20 21 22 |
# File 'lib/sslyze/xml/reneg.rb', line 18 def session_renegotiation @session_renegotiation ||= if (element = @node.at_xpath('sessionRenegotiation')) SessionRenegotiation.new(element) end end |