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.
62 lines
1.5 KiB
62 lines
1.5 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System.Collections; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9 |
|
{ |
|
/** |
|
* ASN.1 def for Diffie-Hellman key exchange KeySpecificInfo structure. See |
|
* RFC 2631, or X9.42, for further details. |
|
*/ |
|
public class KeySpecificInfo |
|
: Asn1Encodable |
|
{ |
|
private DerObjectIdentifier algorithm; |
|
private Asn1OctetString counter; |
|
|
|
public KeySpecificInfo( |
|
DerObjectIdentifier algorithm, |
|
Asn1OctetString counter) |
|
{ |
|
this.algorithm = algorithm; |
|
this.counter = counter; |
|
} |
|
|
|
public KeySpecificInfo( |
|
Asn1Sequence seq) |
|
{ |
|
IEnumerator e = seq.GetEnumerator(); |
|
|
|
e.MoveNext(); |
|
algorithm = (DerObjectIdentifier)e.Current; |
|
e.MoveNext(); |
|
counter = (Asn1OctetString)e.Current; |
|
} |
|
|
|
public DerObjectIdentifier Algorithm |
|
{ |
|
get { return algorithm; } |
|
} |
|
|
|
public Asn1OctetString Counter |
|
{ |
|
get { return counter; } |
|
} |
|
|
|
/** |
|
* Produce an object suitable for an Asn1OutputStream. |
|
* <pre> |
|
* KeySpecificInfo ::= Sequence { |
|
* algorithm OBJECT IDENTIFIER, |
|
* counter OCTET STRING SIZE (4..4) |
|
* } |
|
* </pre> |
|
*/ |
|
public override Asn1Object ToAsn1Object() |
|
{ |
|
return new DerSequence(algorithm, counter); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|