summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpSignatureSubpacketVector.cs
blob: ae387198ce4bee57a46e4fbd6fcc3fd3ff44e198 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
using System;
using System.Collections.Generic;
using System.IO;

using Org.BouncyCastle.Bcpg.Sig;

namespace Org.BouncyCastle.Bcpg.OpenPgp
{
    /// <remarks>Container for a list of signature subpackets.</remarks>
    public class PgpSignatureSubpacketVector
    {
        public static PgpSignatureSubpacketVector FromSubpackets(SignatureSubpacket[] packets)
        {
            return new PgpSignatureSubpacketVector(packets ?? new SignatureSubpacket[0]);
        }

        private readonly SignatureSubpacket[] packets;

		internal PgpSignatureSubpacketVector(SignatureSubpacket[] packets)
        {
            this.packets = packets;
        }

		public SignatureSubpacket GetSubpacket(SignatureSubpacketTag type)
        {
            for (int i = 0; i != packets.Length; i++)
            {
                if (packets[i].SubpacketType == type)
                    return packets[i];
            }

			return null;
        }

		/**
		 * Return true if a particular subpacket type exists.
		 *
		 * @param type type to look for.
		 * @return true if present, false otherwise.
		 */
		public bool HasSubpacket(SignatureSubpacketTag type)
		{
			return GetSubpacket(type) != null;
		}

		/**
		 * Return all signature subpackets of the passed in type.
		 * @param type subpacket type code
		 * @return an array of zero or more matching subpackets.
		 */
		public SignatureSubpacket[] GetSubpackets(SignatureSubpacketTag type)
		{
            int count = 0;
            for (int i = 0; i < packets.Length; ++i)
            {
                if (packets[i].SubpacketType == type)
                {
                    ++count;
                }
            }

            SignatureSubpacket[] result = new SignatureSubpacket[count];

            int pos = 0;
            for (int i = 0; i < packets.Length; ++i)
            {
                if (packets[i].SubpacketType == type)
                {
                    result[pos++] = packets[i];
                }
            }

            return result;
        }

        /// <exception cref="PgpException"/>
        public PgpSignatureList GetEmbeddedSignatures()
        {
            SignatureSubpacket[] sigs = GetSubpackets(SignatureSubpacketTag.EmbeddedSignature);
            PgpSignature[] l = new PgpSignature[sigs.Length];

            for (int i = 0; i < sigs.Length; i++)
            {
                try
                {
                    l[i] = new PgpSignature(SignaturePacket.FromByteArray(sigs[i].GetData()));
                }
                catch (IOException e)
                {
                    throw new PgpException("Unable to parse signature packet: " + e.Message, e);
                }
            }

            return new PgpSignatureList(l);
        }

        public NotationData[] GetNotationDataOccurrences()
		{
			SignatureSubpacket[] notations = GetSubpackets(SignatureSubpacketTag.NotationData);
			NotationData[] vals = new NotationData[notations.Length];

			for (int i = 0; i < notations.Length; i++)
			{
				vals[i] = (NotationData) notations[i];
			}

			return vals;
		}

        public NotationData[] GetNotationDataOccurrences(string notationName)
        {
            NotationData[] notations = GetNotationDataOccurrences();
            var notationsWithName = new List<NotationData>();
            for (int i = 0; i != notations.Length; i++)
            {
                NotationData notation = notations[i];
                if (notation.GetNotationName().Equals(notationName))
                {
                    notationsWithName.Add(notation);
                }
            }
            return notationsWithName.ToArray();
        }

        public long GetIssuerKeyId()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.IssuerKeyId);

            return p == null ? 0 : ((IssuerKeyId)p).KeyId;
        }

		public bool HasSignatureCreationTime()
		{
			return GetSubpacket(SignatureSubpacketTag.CreationTime) != null;
		}

		public DateTime GetSignatureCreationTime()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.CreationTime)
                ?? throw new PgpException("SignatureCreationTime not available");

            return ((SignatureCreationTime)p).GetTime();
        }

        public bool HasSignatureExpirationTime()
        {
            return GetSubpacket(SignatureSubpacketTag.ExpireTime) != null;
        }

        /// <summary>
        /// Return the number of seconds a signature is valid for after its creation date.
        /// A value of zero means the signature never expires.
        /// </summary>
        /// <returns>Seconds a signature is valid for.</returns>
        public long GetSignatureExpirationTime()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.ExpireTime);

			return p == null ? 0 : ((SignatureExpirationTime)p).Time;
        }

		/// <summary>
		/// Return the number of seconds a key is valid for after its creation date.
		/// A value of zero means the key never expires.
		/// </summary>
		/// <returns>Seconds a signature is valid for.</returns>
        public long GetKeyExpirationTime()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.KeyExpireTime);

			return p == null ? 0 : ((KeyExpirationTime)p).Time;
        }

		public int[] GetPreferredHashAlgorithms()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.PreferredHashAlgorithms);

			return p == null ? null : ((PreferredAlgorithms)p).GetPreferences();
        }

		public int[] GetPreferredSymmetricAlgorithms()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.PreferredSymmetricAlgorithms);

            return p == null ? null : ((PreferredAlgorithms)p).GetPreferences();
        }

		public int[] GetPreferredCompressionAlgorithms()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.PreferredCompressionAlgorithms);

            return p == null ? null : ((PreferredAlgorithms)p).GetPreferences();
        }

        public int[] GetPreferredAeadAlgorithms()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.PreferredAeadAlgorithms);

            return p == null ? null : ((PreferredAlgorithms)p).GetPreferences();
        }

        public int GetKeyFlags()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.KeyFlags);

            return p == null ? 0 : ((KeyFlags)p).Flags;
        }

		public string GetSignerUserId()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.SignerUserId);

			return p == null ? null : ((SignerUserId)p).GetId();
        }

		public bool IsPrimaryUserId()
		{
			PrimaryUserId primaryId = (PrimaryUserId)GetSubpacket(SignatureSubpacketTag.PrimaryUserId);

            return primaryId != null && primaryId.IsPrimaryUserId();
		}

		public SignatureSubpacketTag[] GetCriticalTags()
        {
            int count = 0;
            for (int i = 0; i != packets.Length; i++)
            {
                if (packets[i].IsCritical())
                {
                    count++;
                }
            }

			SignatureSubpacketTag[] list = new SignatureSubpacketTag[count];

			count = 0;

			for (int i = 0; i != packets.Length; i++)
            {
                if (packets[i].IsCritical())
                {
                    list[count++] = packets[i].SubpacketType;
                }
            }

			return list;
        }

        public SignatureTarget GetSignatureTarget()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.SignatureTarget);

            return p == null ? null : new SignatureTarget(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public Features GetFeatures()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.Features);

            return p == null ? null : new Features(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public IssuerFingerprint GetIssuerFingerprint()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.IssuerFingerprint);

            return p == null ? null : new IssuerFingerprint(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public IntendedRecipientFingerprint GetIntendedRecipientFingerprint()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.IntendedRecipientFingerprint);

            return p == null ? null : new IntendedRecipientFingerprint(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public IntendedRecipientFingerprint[] GetIntendedRecipientFingerprints()
        {
            SignatureSubpacket[] subpackets = GetSubpackets(SignatureSubpacketTag.IntendedRecipientFingerprint);
            IntendedRecipientFingerprint[] recipients = new IntendedRecipientFingerprint[subpackets.Length];
            for (int i = 0; i < recipients.Length; i++)
            {
                SignatureSubpacket p = subpackets[i];
                recipients[i] = new IntendedRecipientFingerprint(p.IsCritical(), p.IsLongLength(), p.GetData());
            }
            return recipients;
        }

        public Exportable GetExportable()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.Exportable);

            return p == null ? null : new Exportable(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public bool IsExportable()
        {
            Exportable exportable = GetExportable();
            return exportable == null || exportable.IsExportable();
        }

        public PolicyUrl GetPolicyUrl()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.PolicyUrl);

            return p == null ? null : new PolicyUrl(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public PolicyUrl[] GetPolicyUrls()
        {
            SignatureSubpacket[] subpackets = GetSubpackets(SignatureSubpacketTag.PolicyUrl);
            PolicyUrl[] policyUrls = new PolicyUrl[subpackets.Length];
            for (int i = 0; i < subpackets.Length; i++)
            {
                SignatureSubpacket p = subpackets[i];
                policyUrls[i] = new PolicyUrl(p.IsCritical(), p.IsLongLength(), p.GetData());
            }
            return policyUrls;
        }

        public RegularExpression GetRegularExpression()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.RegExp);

            return p == null ? null : new RegularExpression(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public RegularExpression[] GetRegularExpressions()
        {
            SignatureSubpacket[] subpackets = GetSubpackets(SignatureSubpacketTag.RegExp);
            RegularExpression[] regexes = new RegularExpression[subpackets.Length];
            for (int i = 0; i < regexes.Length; i++)
            {
                SignatureSubpacket p = subpackets[i];
                regexes[i] = new RegularExpression(p.IsCritical(), p.IsLongLength(), p.GetData());
            }
            return regexes;
        }

        public Revocable GetRevocable()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.Revocable);

            return p == null ? null : new Revocable(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public bool IsRevocable()
        {
            Revocable revocable = GetRevocable();
            return revocable == null || revocable.IsRevocable();
        }

        public RevocationKey[] GetRevocationKeys()
        {
            SignatureSubpacket[] subpackets = GetSubpackets(SignatureSubpacketTag.RevocationKey);
            RevocationKey[] revocationKeys = new RevocationKey[subpackets.Length];
            for (int i = 0; i < revocationKeys.Length; i++)
            {
                SignatureSubpacket p = subpackets[i]; 
                revocationKeys[i] = new RevocationKey(p.IsCritical(), p.IsLongLength(), p.GetData());
            }
            return revocationKeys;
        }

        public RevocationReason GetRevocationReason()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.RevocationReason);

            return p == null ? null : new RevocationReason(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

        public TrustSignature GetTrust()
        {
            SignatureSubpacket p = GetSubpacket(SignatureSubpacketTag.TrustSig);

            return p == null ? null : new TrustSignature(p.IsCritical(), p.IsLongLength(), p.GetData());
        }

		/// <summary>Return the number of packets this vector contains.</summary>
		public int Count => packets.Length;

		internal SignatureSubpacket[] ToSubpacketArray()
        {
            return packets;
        }

        /**
         * Return a copy of the subpackets in this vector.
         *
         * @return an array containing the vector subpackets in order.
         */
        public SignatureSubpacket[] ToArray()
        {
            return (SignatureSubpacket[])packets.Clone();
        }
    }
}