blob: ecebb22a889518cd792b0520be5864c5e34be58e (
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
|
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Cmp
{
/**
* PKIConfirmContent ::= NULL
*/
public class PkiConfirmContent
: Asn1Encodable
{
public static PkiConfirmContent GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is PkiConfirmContent pkiConfirmContent)
return pkiConfirmContent;
if (obj is Asn1Null asn1Null)
return new PkiConfirmContent(asn1Null);
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), nameof(obj));
}
private readonly Asn1Null m_val;
public PkiConfirmContent()
: this(DerNull.Instance)
{
}
private PkiConfirmContent(Asn1Null val)
{
m_val = val;
}
/**
* <pre>
* PkiConfirmContent ::= NULL
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
return m_val;
}
}
}
|