Table of Contents

Class CertificateVerify

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

Constructors

CertificateVerify(int, byte[])

public CertificateVerify(int algorithm, byte[] signature)

Parameters

algorithm int
signature byte[]

Properties

Algorithm

public int Algorithm { get; }

Property Value

int

a SignatureScheme value.

Signature

public byte[] Signature { get; }

Property Value

byte[]

Methods

Encode(Stream)

Encode this CertificateVerify to a Stream.

public void Encode(Stream output)

Parameters

output Stream

the Stream to encode to.

Exceptions

IOException

Parse(TlsContext, Stream)

Parse a CertificateVerify from a Stream.

public static CertificateVerify Parse(TlsContext context, Stream input)

Parameters

context TlsContext

the TlsContext of the current connection.

input Stream

the Stream to parse from.

Returns

CertificateVerify

a CertificateVerify object.

Exceptions

IOException