Creates a new BasicResponse
. If der_string is given, decodes der_string as DER.
Creates a new SingleResponse
from der_string.
Creates a new OpenSSL::OCSP::CertificateId
for the given subject and issuer X509
certificates. The digest is a digest algorithm that is used to compute the hash values. This defaults to SHA-1.
If only one argument is given, decodes it as DER representation of a certificate ID or generates certificate ID from the object that responds to the to_der
method.
Because PKey
is an abstract class, actually calling this method explicitly will raise a NotImplementedError
.
Creates a Response
from a File
or string
parameter, the corresponding File
or string
must be DER-encoded. Please note that Response
is an immutable read-only class. If you’d like to create timestamps please refer to Factory
instead.
Creates a TokenInfo
from a File
or string
parameter, the corresponding File
or string
must be DER-encoded. Please note that TokenInfo
is an immutable read-only class. If you’d like to create timestamps please refer to Factory
instead.
When creating a Request
with the File
or string
parameter, the corresponding File
or string
must be DER-encoded.
Creates a new X509::Store
.
Create a new Alias
that points to an anchor
Create a new Psych::Nodes::Document
object.
version
is a list indicating the YAML
version. tags_directives
is a list of tag directive declarations implicit
is a flag indicating whether the document will be implicitly started.
This creates a YAML
document object that represents a YAML
1.1 document with one tag directive, and has an implicit start:
Psych::Nodes::Document.new( [1,1], [["!", "tag:tenderlovemaking.com,2009:"]], true )
See also Psych::Handler#start_document
Create a new Psych::Nodes::Mapping
object.
anchor
is the anchor associated with the map or nil
. tag
is the tag associated with the map or nil
. implicit
is a boolean indicating whether or not the map was implicitly started. style
is an integer indicating the mapping style.
See also Psych::Handler#start_mapping
Create a new Psych::Nodes::Node
Create a new Psych::Nodes::Scalar
object.
value
is the string value of the scalar anchor
is an associated anchor or nil tag
is an associated tag or nil plain
is a boolean value quoted
is a boolean value style
is an integer indicating the string style
See also Psych::Handler#scalar
Create a new object representing a YAML
sequence.
anchor
is the anchor associated with the sequence or nil. tag
is the tag associated with the sequence or nil. implicit
a boolean indicating whether or not the sequence was implicitly started. style
is an integer indicating the list style.
Create a new Psych::Nodes::Stream
node with an encoding
that defaults to Psych::Nodes::Stream::UTF8
.
See also Psych::Handler#start_stream