1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.X509
- {
- /**
- * Class for carrying the values in an X.509 Attribute.
- */
- public class X509Attribute
- : Asn1Encodable
- {
- private readonly AttributeX509 attr;
- /**
- * @param at an object representing an attribute.
- */
- internal X509Attribute(
- Asn1Encodable at)
- {
- this.attr = AttributeX509.GetInstance(at);
- }
- /**
- * Create an X.509 Attribute with the type given by the passed in oid and
- * the value represented by an ASN.1 Set containing value.
- *
- * @param oid type of the attribute
- * @param value value object to go into the atribute's value set.
- */
- public X509Attribute(
- string oid,
- Asn1Encodable value)
- {
- this.attr = new AttributeX509(new DerObjectIdentifier(oid), new DerSet(value));
- }
- /**
- * Create an X.59 Attribute with the type given by the passed in oid and the
- * value represented by an ASN.1 Set containing the objects in value.
- *
- * @param oid type of the attribute
- * @param value vector of values to go in the attribute's value set.
- */
- public X509Attribute(
- string oid,
- Asn1EncodableVector value)
- {
- this.attr = new AttributeX509(new DerObjectIdentifier(oid), new DerSet(value));
- }
- public string Oid
- {
- get { return attr.AttrType.Id; }
- }
- public Asn1Encodable[] GetValues()
- {
- Asn1Set s = attr.AttrValues;
- Asn1Encodable[] values = new Asn1Encodable[s.Count];
- for (int i = 0; i != s.Count; i++)
- {
- values[i] = (Asn1Encodable)s[i];
- }
- return values;
- }
- public override Asn1Object ToAsn1Object()
- {
- return attr.ToAsn1Object();
- }
- }
- }
- #pragma warning restore
- #endif
|