class Prof::SSL::Result

Attributes

cipher[R]
protocol[R]

Public Class Methods

new(protocol, cipher, supported) click to toggle source
# File lib/prof/ssl/result.rb, line 14
def initialize(protocol, cipher, supported)
  @protocol  = protocol
  @cipher    = String(cipher)
  @supported = supported
end

Public Instance Methods

supported?() click to toggle source
# File lib/prof/ssl/result.rb, line 22
def supported?
  @supported
end