You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
674 B
36 lines
674 B
using System;
|
|
|
|
using Org.BouncyCastle.Utilities;
|
|
|
|
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: " + Platform.GetTypeName(obj), "obj");
|
|
}
|
|
|
|
public PkiConfirmContent()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* <pre>
|
|
* PkiConfirmContent ::= NULL
|
|
* </pre>
|
|
* @return a basic ASN.1 object representation.
|
|
*/
|
|
public override Asn1Object ToAsn1Object()
|
|
{
|
|
return DerNull.Instance;
|
|
}
|
|
}
|
|
}
|
|
|