Table of Contents

Class CertificateStatus

Namespace
Org.BouncyCastle.Tls
Assembly
BouncyCastle.Cryptography.dll
public sealed class CertificateStatus
Inheritance
CertificateStatus
Inherited Members

Constructors

CertificateStatus(short, object)

public CertificateStatus(short statusType, object response)

Parameters

statusType short
response object

Properties

OcspResponse

public OcspResponse OcspResponse { get; }

Property Value

OcspResponse

OcspResponseList

an IList<T> of (possibly null) OcspResponse.

public IList<OcspResponse> OcspResponseList { get; }

Property Value

IList<OcspResponse>

Response

public object Response { get; }

Property Value

object

StatusType

public short StatusType { get; }

Property Value

short

Methods

Encode(Stream)

Encode this CertificateStatus to a Stream.

public void Encode(Stream output)

Parameters

output Stream

the Stream to encode to.

Exceptions

IOException

Parse(TlsContext, Stream)

Parse a CertificateStatus from a Stream.

public static CertificateStatus Parse(TlsContext context, Stream input)

Parameters

context TlsContext

the TlsContext of the current connection.

input Stream

the Stream to parse from.

Returns

CertificateStatus

a CertificateStatus object.

Exceptions

IOException