Table of Contents

Class OcspStatusRequest

Namespace
Org.BouncyCastle.Tls
Assembly
BouncyCastle.Cryptography.dll

RFC 3546 3.6

public sealed class OcspStatusRequest
Inheritance
OcspStatusRequest
Inherited Members

Constructors

OcspStatusRequest(IList<ResponderID>, X509Extensions)

public OcspStatusRequest(IList<ResponderID> responderIDList, X509Extensions requestExtensions)

Parameters

responderIDList IList<ResponderID>

an IList<T> of ResponderID, specifying the list of trusted OCSP responders. An empty list has the special meaning that the responders are implicitly known to the server - e.g., by prior arrangement.

requestExtensions X509Extensions

OCSP request extensions. A null value means that there are no extensions.

Properties

RequestExtensions

public X509Extensions RequestExtensions { get; }

Property Value

X509Extensions

OCSP request extensions.

ResponderIDList

public IList<ResponderID> ResponderIDList { get; }

Property Value

IList<ResponderID>

an IList<T> of ResponderID.

Methods

Encode(Stream)

Encode this OcspStatusRequest to a Stream.

public void Encode(Stream output)

Parameters

output Stream

the Stream to encode to.

Exceptions

IOException

Parse(Stream)

Parse an OcspStatusRequest from a Stream.

public static OcspStatusRequest Parse(Stream input)

Parameters

input Stream

the Stream to parse from.

Returns

OcspStatusRequest

an OcspStatusRequest object.

Exceptions

IOException