This commit is contained in:
2026-06-15 18:18:16 +08:00
parent 97c9fba14e
commit 2b9f134e5f
4164 changed files with 386922 additions and 79 deletions

View File

@@ -0,0 +1,54 @@
#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