class SSLyze::XML::OpenSSLCCS

Represents the `<openssl_ccs>` XML element.

@since 1.0.0

Public Instance Methods

injection()
is_vulnerable?() click to toggle source

@return [Boolean]

# File lib/sslyze/xml/openssl_ccs.rb, line 26
def is_vulnerable?
  openssl_ccs_injection.is_vulnerable?
end
Also aliased as: vulnerable?
openssl_ccs_injection() click to toggle source

@return [OpenSSLCCSInjection]

# File lib/sslyze/xml/openssl_ccs.rb, line 15
def openssl_ccs_injection
  @openssl_ccs_injection ||= OpenSSLCCSInjection.new(
    @node.at_xpath('openSslCcsInjection')
  )
end
Also aliased as: injection
vulnerable?()
Alias for: is_vulnerable?