init commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1.Crmf;
|
||||
|
||||
public class CertReqMessages : Asn1Encodable
|
||||
{
|
||||
private readonly Asn1Sequence content;
|
||||
|
||||
private CertReqMessages(Asn1Sequence seq)
|
||||
{
|
||||
content = seq;
|
||||
}
|
||||
|
||||
public static CertReqMessages GetInstance(object obj)
|
||||
{
|
||||
if (obj is CertReqMessages)
|
||||
{
|
||||
return (CertReqMessages)obj;
|
||||
}
|
||||
if (obj is Asn1Sequence)
|
||||
{
|
||||
return new CertReqMessages((Asn1Sequence)obj);
|
||||
}
|
||||
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
|
||||
}
|
||||
|
||||
public CertReqMessages(params CertReqMsg[] msgs)
|
||||
{
|
||||
content = new DerSequence(msgs);
|
||||
}
|
||||
|
||||
public virtual CertReqMsg[] ToCertReqMsgArray()
|
||||
{
|
||||
CertReqMsg[] array = new CertReqMsg[content.Count];
|
||||
for (int i = 0; i != array.Length; i++)
|
||||
{
|
||||
array[i] = CertReqMsg.GetInstance(content[i]);
|
||||
}
|
||||
return array;
|
||||
}
|
||||
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user