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.
65 lines
1.4 KiB
65 lines
1.4 KiB
8 months ago
|
#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.Cmp
|
||
|
{
|
||
|
public class ProtectedPart
|
||
|
: Asn1Encodable
|
||
|
{
|
||
|
private readonly PkiHeader header;
|
||
|
private readonly PkiBody body;
|
||
|
|
||
|
private ProtectedPart(Asn1Sequence seq)
|
||
|
{
|
||
|
header = PkiHeader.GetInstance(seq[0]);
|
||
|
body = PkiBody.GetInstance(seq[1]);
|
||
|
}
|
||
|
|
||
|
public static ProtectedPart GetInstance(object obj)
|
||
|
{
|
||
|
if (obj is ProtectedPart)
|
||
|
return (ProtectedPart)obj;
|
||
|
|
||
|
if (obj is Asn1Sequence)
|
||
|
return new ProtectedPart((Asn1Sequence)obj);
|
||
|
|
||
|
throw new ArgumentException("Invalid object: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
|
||
|
}
|
||
|
|
||
|
public ProtectedPart(PkiHeader header, PkiBody body)
|
||
|
{
|
||
|
this.header = header;
|
||
|
this.body = body;
|
||
|
}
|
||
|
|
||
|
public virtual PkiHeader Header
|
||
|
{
|
||
|
get { return header; }
|
||
|
}
|
||
|
|
||
|
public virtual PkiBody Body
|
||
|
{
|
||
|
get { return body; }
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* <pre>
|
||
|
* ProtectedPart ::= SEQUENCE {
|
||
|
* header PKIHeader,
|
||
|
* body PKIBody
|
||
|
* }
|
||
|
* </pre>
|
||
|
* @return a basic ASN.1 object representation.
|
||
|
*/
|
||
|
public override Asn1Object ToAsn1Object()
|
||
|
{
|
||
|
return new DerSequence(header, body);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|