blob: 98645766ab6d4373c985f433331116ff8859a8d6 (
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
|
using System;
namespace Org.BouncyCastle.Asn1.Cmp
{
public class PkiConfirmContent
: Asn1Encodable
{
public static PkiConfirmContent GetInstance(object obj)
{
if (obj is PkiConfirmContent)
return (PkiConfirmContent)obj;
if (obj is Asn1Null)
return new PkiConfirmContent();
throw new ArgumentException("Invalid object: " + obj.GetType().Name, "obj");
}
public PkiConfirmContent()
{
}
/**
* <pre>
* PkiConfirmContent ::= NULL
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
return DerNull.Instance;
}
}
}
|