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
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
Exceptions
Parse(TlsContext, Stream)
Parse a CertificateVerify from a Stream.
public static CertificateVerify Parse(TlsContext context, Stream input)
Parameters
contextTlsContextthe TlsContext of the current connection.
inputStreamthe Stream to parse from.
Returns
- CertificateVerify
a CertificateVerify object.