add all
This commit is contained in:
71
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cmp/CertReqTemplateContent.cs
vendored
Normal file
71
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cmp/CertReqTemplateContent.cs
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp
|
||||
{
|
||||
/**
|
||||
* GenMsg: {id-it 19}, < absent >
|
||||
* GenRep: {id-it 19}, CertReqTemplateContent | < absent >
|
||||
* <p>
|
||||
* CertReqTemplateValue ::= CertReqTemplateContent
|
||||
* </p><p>
|
||||
* CertReqTemplateContent ::= SEQUENCE {
|
||||
* certTemplate CertTemplate,
|
||||
* keySpec Controls OPTIONAL }
|
||||
* </p><p>
|
||||
* Controls ::= SEQUENCE SIZE (1..MAX) OF AttributeTypeAndValue
|
||||
* </p>
|
||||
*/
|
||||
public class CertReqTemplateContent
|
||||
: Asn1Encodable
|
||||
{
|
||||
public static CertReqTemplateContent GetInstance(object obj)
|
||||
{
|
||||
if (obj is CertReqTemplateContent certReqTemplateContent)
|
||||
return certReqTemplateContent;
|
||||
|
||||
if (obj != null)
|
||||
return new CertReqTemplateContent(Asn1Sequence.GetInstance(obj));
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private readonly CertTemplate m_certTemplate;
|
||||
private readonly Asn1Sequence m_keySpec;
|
||||
|
||||
private CertReqTemplateContent(Asn1Sequence seq)
|
||||
{
|
||||
if (seq.Count != 1 && seq.Count != 2)
|
||||
throw new ArgumentException("expected sequence size of 1 or 2");
|
||||
|
||||
m_certTemplate = CertTemplate.GetInstance(seq[0]);
|
||||
|
||||
if (seq.Count > 1)
|
||||
{
|
||||
m_keySpec = Asn1Sequence.GetInstance(seq[1]);
|
||||
}
|
||||
}
|
||||
|
||||
public CertReqTemplateContent(CertTemplate certTemplate, Asn1Sequence keySpec)
|
||||
{
|
||||
m_certTemplate = certTemplate;
|
||||
m_keySpec = keySpec;
|
||||
}
|
||||
|
||||
public virtual CertTemplate CertTemplate => m_certTemplate;
|
||||
|
||||
public virtual Asn1Sequence KeySpec => m_keySpec;
|
||||
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
Asn1EncodableVector v = new Asn1EncodableVector(m_certTemplate);
|
||||
v.AddOptional(m_keySpec);
|
||||
return new DerSequence(v);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user