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.
66 lines
1.5 KiB
66 lines
1.5 KiB
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Icao
|
||
|
{
|
||
|
public class LdsVersionInfo
|
||
|
: Asn1Encodable
|
||
|
{
|
||
|
private DerPrintableString ldsVersion;
|
||
|
private DerPrintableString unicodeVersion;
|
||
|
|
||
|
public LdsVersionInfo(string ldsVersion, string unicodeVersion)
|
||
|
{
|
||
|
this.ldsVersion = new DerPrintableString(ldsVersion);
|
||
|
this.unicodeVersion = new DerPrintableString(unicodeVersion);
|
||
|
}
|
||
|
|
||
|
private LdsVersionInfo(Asn1Sequence seq)
|
||
|
{
|
||
|
if (seq.Count != 2)
|
||
|
throw new ArgumentException("sequence wrong size for LDSVersionInfo", "seq");
|
||
|
|
||
|
this.ldsVersion = DerPrintableString.GetInstance(seq[0]);
|
||
|
this.unicodeVersion = DerPrintableString.GetInstance(seq[1]);
|
||
|
}
|
||
|
|
||
|
public static LdsVersionInfo GetInstance(object obj)
|
||
|
{
|
||
|
if (obj is LdsVersionInfo)
|
||
|
return (LdsVersionInfo)obj;
|
||
|
|
||
|
if (obj != null)
|
||
|
return new LdsVersionInfo(Asn1Sequence.GetInstance(obj));
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public virtual string GetLdsVersion()
|
||
|
{
|
||
|
return ldsVersion.GetString();
|
||
|
}
|
||
|
|
||
|
public virtual string GetUnicodeVersion()
|
||
|
{
|
||
|
return unicodeVersion.GetString();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* <pre>
|
||
|
* LDSVersionInfo ::= SEQUENCE {
|
||
|
* ldsVersion PRINTABLE STRING
|
||
|
* unicodeVersion PRINTABLE STRING
|
||
|
* }
|
||
|
* </pre>
|
||
|
* @return
|
||
|
*/
|
||
|
public override Asn1Object ToAsn1Object()
|
||
|
{
|
||
|
return new DerSequence(ldsVersion, unicodeVersion);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|