summary refs log tree commit diff
path: root/crypto/src/asn1/cms/RecipientKeyIdentifier.cs
blob: daae426d24156046979fd73889f0c7a36e576ed0 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
using System;

using Org.BouncyCastle.Utilities;

namespace Org.BouncyCastle.Asn1.Cms
{
    public class RecipientKeyIdentifier
        : Asn1Encodable
    {
        public static RecipientKeyIdentifier GetInstance(object obj)
        {
            if (obj == null)
                return null;
            if (obj is RecipientKeyIdentifier recipientKeyIdentifier)
                return recipientKeyIdentifier;
#pragma warning disable CS0618 // Type or member is obsolete
            return new RecipientKeyIdentifier(Asn1Sequence.GetInstance(obj));
#pragma warning restore CS0618 // Type or member is obsolete
        }

        public static RecipientKeyIdentifier GetInstance(Asn1TaggedObject ato, bool explicitly)
        {
#pragma warning disable CS0618 // Type or member is obsolete
            return new RecipientKeyIdentifier(Asn1Sequence.GetInstance(ato, explicitly));
#pragma warning restore CS0618 // Type or member is obsolete
        }

        private Asn1OctetString      subjectKeyIdentifier;
        private Asn1GeneralizedTime  date;
        private OtherKeyAttribute    other;

		public RecipientKeyIdentifier(
            Asn1OctetString         subjectKeyIdentifier,
            Asn1GeneralizedTime     date,
            OtherKeyAttribute       other)
        {
            this.subjectKeyIdentifier = subjectKeyIdentifier;
            this.date = date;
            this.other = other;
        }
		
		public RecipientKeyIdentifier(
			byte[] subjectKeyIdentifier)
			: this(subjectKeyIdentifier, null, null)
		{
		}

		public RecipientKeyIdentifier(
			byte[]				subjectKeyIdentifier,
            Asn1GeneralizedTime date,
			OtherKeyAttribute	other)
		{
			this.subjectKeyIdentifier = new DerOctetString(subjectKeyIdentifier);
			this.date = date;
			this.other = other;
		}

        [Obsolete("Use 'GetInstance' instead")]
        public RecipientKeyIdentifier(Asn1Sequence seq)
        {
            subjectKeyIdentifier = Asn1OctetString.GetInstance(seq[0]);

			switch(seq.Count)
            {
			case 1:
				break;
			case 2:
				if (seq[1] is Asn1GeneralizedTime asn1GeneralizedTime)
				{
					date = asn1GeneralizedTime;
				}
				else
				{
					other = OtherKeyAttribute.GetInstance(seq[2]);
				}
				break;
			case 3:
				date = (Asn1GeneralizedTime)seq[1];
				other = OtherKeyAttribute.GetInstance(seq[2]);
				break;
			default:
				throw new ArgumentException("Invalid RecipientKeyIdentifier");
            }
        }

        public Asn1OctetString SubjectKeyIdentifier
		{
			get { return subjectKeyIdentifier; }
		}

		public Asn1GeneralizedTime Date
		{
			get { return date; }
		}

		public OtherKeyAttribute OtherKeyAttribute
		{
			get { return other; }
		}

		/**
         * Produce an object suitable for an Asn1OutputStream.
         * <pre>
         * RecipientKeyIdentifier ::= Sequence {
         *     subjectKeyIdentifier SubjectKeyIdentifier,
         *     date GeneralizedTime OPTIONAL,
         *     other OtherKeyAttribute OPTIONAL
         * }
         *
         * SubjectKeyIdentifier ::= OCTET STRING
         * </pre>
         */
        public override Asn1Object ToAsn1Object()
        {
            Asn1EncodableVector v = new Asn1EncodableVector(subjectKeyIdentifier);
			v.AddOptional(date, other);
			return new DerSequence(v);
        }
    }
}