blob: d41f48e2ea6304e38cf44bea983f2f2e3edca9f2 (
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
46
47
48
49
50
51
52
|
using System;
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Asn1.Cmp
{
/**
* CertAnnContent ::= CMPCertificate
*/
public class CertAnnContent
: CmpCertificate
{
public static new CertAnnContent GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is CertAnnContent certAnnContent)
return certAnnContent;
if (obj is CmpCertificate cmpCertificate)
return new CertAnnContent(cmpCertificate);
if (obj is Asn1TaggedObject taggedObject)
return new CertAnnContent(taggedObject);
return new CertAnnContent(X509CertificateStructure.GetInstance(obj));
}
public static new CertAnnContent GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
{
return Asn1Utilities.GetInstanceFromChoice(taggedObject, declaredExplicit, GetInstance);
}
[Obsolete("Use 'GetInstance' from tagged object instead")]
public CertAnnContent(int type, Asn1Object otherCert)
: base(type, otherCert)
{
}
internal CertAnnContent(Asn1TaggedObject taggedObject)
: base(taggedObject)
{
}
internal CertAnnContent(CmpCertificate other)
: base(other)
{
}
public CertAnnContent(X509CertificateStructure x509v3PKCert)
: base(x509v3PKCert)
{
}
}
}
|