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

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

        public static ProtectedPart GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
        {
            return new ProtectedPart(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
        }

        private readonly PkiHeader m_header;
		private readonly PkiBody m_body;

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

            m_header = PkiHeader.GetInstance(seq[0]);
			m_body = PkiBody.GetInstance(seq[1]);
		}

		public ProtectedPart(PkiHeader header, PkiBody body)
		{
			m_header = header ?? throw new ArgumentNullException(nameof(header));
			m_body = body ?? throw new ArgumentNullException(nameof(body));
		}

		public virtual PkiHeader Header => m_header;

		public virtual PkiBody Body => m_body;

		/**
		 * <pre>
		 * ProtectedPart ::= SEQUENCE {
		 *                    header    PKIHeader,
		 *                    body      PKIBody
		 * }
		 * </pre>
		 * @return a basic ASN.1 object representation.
		 */
		public override Asn1Object ToAsn1Object() => new DerSequence(m_header, m_body);
	}
}