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.
83 lines
2.1 KiB
83 lines
2.1 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Qualified |
|
{ |
|
/** |
|
* The QCStatement object. |
|
* <pre> |
|
* QCStatement ::= SEQUENCE { |
|
* statementId OBJECT IDENTIFIER, |
|
* statementInfo ANY DEFINED BY statementId OPTIONAL} |
|
* </pre> |
|
*/ |
|
public class QCStatement |
|
: Asn1Encodable |
|
{ |
|
private readonly DerObjectIdentifier qcStatementId; |
|
private readonly Asn1Encodable qcStatementInfo; |
|
|
|
public static QCStatement GetInstance( |
|
object obj) |
|
{ |
|
if (obj == null || obj is QCStatement) |
|
{ |
|
return (QCStatement) obj; |
|
} |
|
|
|
if (obj is Asn1Sequence) |
|
{ |
|
return new QCStatement(Asn1Sequence.GetInstance(obj)); |
|
} |
|
|
|
throw new ArgumentException("unknown object in GetInstance: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj"); |
|
} |
|
|
|
private QCStatement( |
|
Asn1Sequence seq) |
|
{ |
|
qcStatementId = DerObjectIdentifier.GetInstance(seq[0]); |
|
|
|
if (seq.Count > 1) |
|
{ |
|
qcStatementInfo = seq[1]; |
|
} |
|
} |
|
|
|
public QCStatement( |
|
DerObjectIdentifier qcStatementId) |
|
{ |
|
this.qcStatementId = qcStatementId; |
|
} |
|
|
|
public QCStatement( |
|
DerObjectIdentifier qcStatementId, |
|
Asn1Encodable qcStatementInfo) |
|
{ |
|
this.qcStatementId = qcStatementId; |
|
this.qcStatementInfo = qcStatementInfo; |
|
} |
|
|
|
public DerObjectIdentifier StatementId |
|
{ |
|
get { return qcStatementId; } |
|
} |
|
|
|
public Asn1Encodable StatementInfo |
|
{ |
|
get { return qcStatementInfo; } |
|
} |
|
|
|
public override Asn1Object ToAsn1Object() |
|
{ |
|
Asn1EncodableVector v = new Asn1EncodableVector(qcStatementId); |
|
v.AddOptional(qcStatementInfo); |
|
return new DerSequence(v); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|