blob: 43aa5b304d8cedfba6d8c284304f2b2a0b8ae8c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
using System.Collections.Generic;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.X509;
namespace Org.BouncyCastle.Pkcs
{
public class X509CertificateEntry
: Pkcs12Entry
{
private readonly X509Certificate cert;
public X509CertificateEntry(X509Certificate cert)
: base(new Dictionary<DerObjectIdentifier, Asn1Encodable>())
{
this.cert = cert;
}
public X509CertificateEntry(X509Certificate cert, IDictionary<DerObjectIdentifier, Asn1Encodable> attributes)
: base(attributes)
{
this.cert = cert;
}
public X509Certificate Certificate
{
get { return this.cert; }
}
public override bool Equals(object obj)
{
X509CertificateEntry other = obj as X509CertificateEntry;
if (other == null)
return false;
return cert.Equals(other.cert);
}
public override int GetHashCode()
{
return ~cert.GetHashCode();
}
}
}
|