C# Class Org.BouncyCastle.X509.X509CertificatePair

This class contains a cross certificate pair. Cross certificates pairs may contain two cross signed certificates from two CAs. A certificate from the other CA to this CA is contained in the forward certificate, the certificate from this CA to the other CA is contained in the reverse certificate.
Show file Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Equals ( object obj ) : bool
GetEncoded ( ) : byte[]
GetHashCode ( ) : int
X509CertificatePair ( CertificatePair pair ) : System

Constructor from a ASN.1 CertificatePair structure.

X509CertificatePair ( X509Certificate forward, X509Certificate reverse ) : System

Constructor

Method Details

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetEncoded() public method

public GetEncoded ( ) : byte[]
return byte[]

GetHashCode() public method

public GetHashCode ( ) : int
return int

X509CertificatePair() public method

Constructor from a ASN.1 CertificatePair structure.
public X509CertificatePair ( CertificatePair pair ) : System
pair Org.BouncyCastle.Asn1.X509.CertificatePair The CertificatePair ASN.1 object.
return System

X509CertificatePair() public method

Constructor
public X509CertificatePair ( X509Certificate forward, X509Certificate reverse ) : System
forward X509Certificate Certificate from the other CA to this CA.
reverse X509Certificate Certificate from this CA to the other CA.
return System