add all
This commit is contained in:
48
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cmp/CertConfirmContent.cs
vendored
Normal file
48
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cmp/CertConfirmContent.cs
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp
|
||||
{
|
||||
public class CertConfirmContent
|
||||
: Asn1Encodable
|
||||
{
|
||||
public static CertConfirmContent GetInstance(object obj)
|
||||
{
|
||||
if (obj is CertConfirmContent content)
|
||||
return content;
|
||||
|
||||
if (obj is Asn1Sequence seq)
|
||||
return new CertConfirmContent(seq);
|
||||
|
||||
throw new ArgumentException("Invalid object: " + Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), nameof(obj));
|
||||
}
|
||||
|
||||
private readonly Asn1Sequence m_content;
|
||||
|
||||
private CertConfirmContent(Asn1Sequence seq)
|
||||
{
|
||||
m_content = seq;
|
||||
}
|
||||
|
||||
public virtual CertStatus[] ToCertStatusArray()
|
||||
{
|
||||
return m_content.MapElements(CertStatus.GetInstance);
|
||||
}
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* CertConfirmContent ::= SEQUENCE OF CertStatus
|
||||
* </pre>
|
||||
* @return a basic ASN.1 object representation.
|
||||
*/
|
||||
public override Asn1Object ToAsn1Object()
|
||||
{
|
||||
return m_content;
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user