Class: SSLyze::Target::SessionRenegotiation

Inherits:
Struct
  • Object
show all
Defined in:
lib/sslyze/target.rb

Overview

Represents the <sessionRenegotiation> XML element.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#client_initiatedObject

Returns the value of attribute client_initiated

Returns:

  • (Object)

    the current value of client_initiated



96
97
98
# File 'lib/sslyze/target.rb', line 96

def client_initiated
  @client_initiated
end

#secureObject

Returns the value of attribute secure

Returns:

  • (Object)

    the current value of secure



96
97
98
# File 'lib/sslyze/target.rb', line 96

def secure
  @secure
end

Instance Method Details

#client_initiated?Boolean

Returns:



98
99
100
# File 'lib/sslyze/target.rb', line 98

def client_initiated?
  client_initiated == true
end

#secure?Boolean

Returns:



102
103
104
# File 'lib/sslyze/target.rb', line 102

def secure?
  secure == true
end