#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.Text;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
{
public class GeneralNames
: Asn1Encodable
{
private readonly GeneralName[] names;
public static GeneralNames GetInstance(
object obj)
{
if (obj == null || obj is GeneralNames)
{
return (GeneralNames) obj;
}
if (obj is Asn1Sequence)
{
return new GeneralNames((Asn1Sequence) obj);
}
throw new ArgumentException("unknown object in factory: " + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
}
public static GeneralNames GetInstance(
Asn1TaggedObject obj,
bool explicitly)
{
return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
}
///
* GeneralNames ::= Sequence SIZE {1..MAX} OF GeneralName
*
*/
public override Asn1Object ToAsn1Object()
{
return new DerSequence(names);
}
public override string ToString()
{
StringBuilder buf = new StringBuilder();
string sep = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.NewLine;
buf.Append("GeneralNames:");
buf.Append(sep);
foreach (GeneralName name in names)
{
buf.Append(" ");
buf.Append(name);
buf.Append(sep);
}
return buf.ToString();
}
}
}
#pragma warning restore
#endif