summary refs log tree commit diff
path: root/crypto/src/asn1/cms/OtherRecipientInfo.cs
blob: b47a256f9356893d41d9cbf7fa6c76b83db3f1ec (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
using System;

namespace Org.BouncyCastle.Asn1.Cms
{
    public class OtherRecipientInfo
        : Asn1Encodable
    {
        public static OtherRecipientInfo GetInstance(object obj)
        {
            if (obj == null)
                return null;
            if (obj is OtherRecipientInfo otherRecipientInfo)
                return otherRecipientInfo;
            return new OtherRecipientInfo(Asn1Sequence.GetInstance(obj));
        }

        public static OtherRecipientInfo GetInstance(Asn1TaggedObject obj, bool explicitly)
        {
            return new OtherRecipientInfo(Asn1Sequence.GetInstance(obj, explicitly));
        }

        private readonly DerObjectIdentifier m_oriType;
        private readonly Asn1Encodable m_oriValue;

        public OtherRecipientInfo(DerObjectIdentifier oriType, Asn1Encodable oriValue)
        {
            m_oriType = oriType ?? throw new ArgumentNullException(nameof(oriType));
            m_oriValue = oriValue ?? throw new ArgumentNullException(nameof(oriValue));
        }

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

            m_oriType = DerObjectIdentifier.GetInstance(seq[0]);
            m_oriValue = seq[1];
        }

        public virtual DerObjectIdentifier OriType => m_oriType;

        public virtual Asn1Encodable OriValue => m_oriValue;

        /**
         * Produce an object suitable for an Asn1OutputStream.
         * <pre>
         * OtherRecipientInfo ::= Sequence {
         *    oriType OBJECT IDENTIFIER,
         *    oriValue ANY DEFINED BY oriType }
         * </pre>
         */
        public override Asn1Object ToAsn1Object() => new DerSequence(m_oriType, m_oriValue);
    }
}