summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpSignatureList.cs
blob: 61976fc4f6f7bbe15b46c8d0658a26ee05b58b95 (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
using System;

namespace Org.BouncyCastle.Bcpg.OpenPgp
{
	/// <remarks>A list of PGP signatures - normally in the signature block after literal data.</remarks>
    public class PgpSignatureList
		: PgpObject
    {
        private PgpSignature[] sigs;

		public PgpSignatureList(
            PgpSignature[] sigs)
        {
            this.sigs = (PgpSignature[]) sigs.Clone();
        }

		public PgpSignatureList(
            PgpSignature sig)
        {
			this.sigs = new PgpSignature[]{ sig };
        }

		public PgpSignature this[int index]
		{
			get { return sigs[index]; }
		}

		[Obsolete("Use 'object[index]' syntax instead")]
		public PgpSignature Get(
            int index)
        {
            return this[index];
        }

		[Obsolete("Use 'Count' property instead")]
		public int Size
        {
			get { return sigs.Length; }
        }

		public int Count
		{
			get { return sigs.Length; }
		}

		public bool IsEmpty
        {
			get { return (sigs.Length == 0); }
        }
    }
}