90 lines
1.9 KiB
C#
90 lines
1.9 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp
|
|
{
|
|
public class PkiFreeText
|
|
: Asn1Encodable
|
|
{
|
|
public static PkiFreeText GetInstance(object obj)
|
|
{
|
|
if (obj is PkiFreeText pkiFreeText)
|
|
return pkiFreeText;
|
|
|
|
if (obj != null)
|
|
return new PkiFreeText(Asn1Sequence.GetInstance(obj));
|
|
|
|
return null;
|
|
}
|
|
|
|
public static PkiFreeText GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
|
|
{
|
|
return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
|
|
}
|
|
|
|
internal Asn1Sequence m_strings;
|
|
|
|
internal PkiFreeText(Asn1Sequence seq)
|
|
{
|
|
foreach (var element in seq)
|
|
{
|
|
if (!(element is DerUtf8String))
|
|
throw new ArgumentException("attempt to insert non UTF8 STRING into PkiFreeText");
|
|
}
|
|
|
|
m_strings = seq;
|
|
}
|
|
|
|
public PkiFreeText(DerUtf8String p)
|
|
{
|
|
m_strings = new DerSequence(p);
|
|
}
|
|
|
|
public PkiFreeText(string p)
|
|
: this(new DerUtf8String(p))
|
|
{
|
|
}
|
|
|
|
public PkiFreeText(DerUtf8String[] strs)
|
|
{
|
|
m_strings = new DerSequence(strs);
|
|
}
|
|
|
|
public PkiFreeText(string[] strs)
|
|
{
|
|
Asn1EncodableVector v = new Asn1EncodableVector(strs.Length);
|
|
for (int i = 0; i < strs.Length; i++)
|
|
{
|
|
v.Add(new DerUtf8String(strs[i]));
|
|
}
|
|
m_strings = new DerSequence(v);
|
|
}
|
|
|
|
public virtual int Count => m_strings.Count;
|
|
|
|
/**
|
|
* Return the UTF8STRING at index.
|
|
*
|
|
* @param index index of the string of interest
|
|
* @return the string at index.
|
|
*/
|
|
public DerUtf8String this[int index]
|
|
{
|
|
get { return (DerUtf8String)m_strings[index]; }
|
|
}
|
|
|
|
/**
|
|
* <pre>
|
|
* PkiFreeText ::= SEQUENCE SIZE (1..MAX) OF UTF8String
|
|
* </pre>
|
|
*/
|
|
public override Asn1Object ToAsn1Object()
|
|
{
|
|
return m_strings;
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|