summary refs log tree commit diff
path: root/crypto/src/asn1/x500/AttributeTypeAndValue.cs
blob: d7e684d86efcbcdbaea425113a2195a06ee7ef8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;

namespace Org.BouncyCastle.Asn1.X500
{
    /**
     * Holding class for the AttributeTypeAndValue structures that make up an RDN.
     */
    public class AttributeTypeAndValue
        : Asn1Encodable
    {
        public static AttributeTypeAndValue GetInstance(object obj)
        {
            if (obj == null)
                return null;
            if (obj is AttributeTypeAndValue attributeTypeAndValue)
                return attributeTypeAndValue;
            return new AttributeTypeAndValue(Asn1Sequence.GetInstance(obj));
        }

        public static AttributeTypeAndValue GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit) =>
            new AttributeTypeAndValue(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));

        public static AttributeTypeAndValue GetTagged(Asn1TaggedObject taggedObject, bool declaredExplicit) =>
            new AttributeTypeAndValue(Asn1Sequence.GetTagged(taggedObject, declaredExplicit));

        private readonly DerObjectIdentifier m_type;
        private readonly Asn1Encodable m_value;

        private AttributeTypeAndValue(Asn1Sequence seq)
        {
            int count = seq.Count;
            if (count != 2)
                throw new ArgumentException("Bad sequence size: " + count, nameof(seq));

            m_type = DerObjectIdentifier.GetInstance(seq[0]);
            m_value = seq[1];
        }

        public AttributeTypeAndValue(DerObjectIdentifier type, Asn1Encodable value)
        {
            m_type = type ?? throw new ArgumentNullException(nameof(type));
            m_value = value ?? throw new ArgumentNullException(nameof(value));
        }

        public virtual DerObjectIdentifier Type => m_type;

        public virtual Asn1Encodable Value => m_value;

        /**
         * <pre>
         * AttributeTypeAndValue ::= SEQUENCE {
         *           type         OBJECT IDENTIFIER,
         *           value        ANY DEFINED BY type }
         * </pre>
         * @return a basic ASN.1 object representation.
         */
        public override Asn1Object ToAsn1Object() => new DerSequence(m_type, m_value);
    }
}