class Vcert::Certificate
Attributes
cert[R]
chain[R]
private_key[RW]
Public Class Methods
new(cert: nil, chain: nil, private_key: nil)
click to toggle source
# File lib/objects/objects.rb, line 158 def initialize(cert: nil, chain: nil, private_key: nil) @cert = cert @chain = chain @private_key = private_key end