Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/x509/AttributeTable.cs
2026-06-15 18:18:16 +08:00

55 lines
1.6 KiB
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System.Collections.Generic;
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
{
public class AttributeTable
{
private readonly IDictionary<DerObjectIdentifier, AttributeX509> m_attributes;
public AttributeTable(IDictionary<DerObjectIdentifier, AttributeX509> attrs)
{
m_attributes = new Dictionary<DerObjectIdentifier, AttributeX509>(attrs);
}
public AttributeTable(Asn1EncodableVector v)
{
m_attributes = new Dictionary<DerObjectIdentifier, AttributeX509>(v.Count);
for (int i = 0; i != v.Count; i++)
{
AttributeX509 a = AttributeX509.GetInstance(v[i]);
m_attributes.Add(a.AttrType, a);
}
}
public AttributeTable(Asn1Set s)
{
m_attributes = new Dictionary<DerObjectIdentifier, AttributeX509>(s.Count);
for (int i = 0; i != s.Count; i++)
{
AttributeX509 a = AttributeX509.GetInstance(s[i]);
m_attributes.Add(a.AttrType, a);
}
}
public AttributeX509 Get(DerObjectIdentifier oid)
{
return CollectionUtilities.GetValueOrNull(m_attributes, oid);
}
public IDictionary<DerObjectIdentifier, AttributeX509> ToDictionary()
{
return new Dictionary<DerObjectIdentifier, AttributeX509>(m_attributes);
}
}
}
#pragma warning restore
#endif