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

using Org.BouncyCastle.Asn1.X509;

namespace Org.BouncyCastle.Asn1.Icao
{
	/**
	 * The CscaMasterList object. This object can be wrapped in a
	 * CMSSignedData to be published in LDAP.
	 *
	 * <pre>
	 * CscaMasterList ::= SEQUENCE {
	 *   version                CscaMasterListVersion,
	 *   certList               SET OF Certificate }
	 *   
	 * CscaMasterListVersion :: INTEGER {v0(0)}
	 * </pre>
	 */
	public class CscaMasterList 
		: Asn1Encodable 
	{
		private DerInteger version = new DerInteger(0);
		private X509CertificateStructure[] certList;

		public static CscaMasterList GetInstance(
			object obj)
		{
			if (obj is CscaMasterList)
				return (CscaMasterList)obj;

			if (obj != null)
				return new CscaMasterList(Asn1Sequence.GetInstance(obj));            

			return null;
		}

		private CscaMasterList(
			Asn1Sequence seq)
		{
			if (seq == null || seq.Count == 0)
				throw new ArgumentException("null or empty sequence passed.");

			if (seq.Count != 2)
				throw new ArgumentException("Incorrect sequence size: " + seq.Count);

			this.version = DerInteger.GetInstance(seq[0]);

			Asn1Set certSet = Asn1Set.GetInstance(seq[1]);

			this.certList = new X509CertificateStructure[certSet.Count];
			for (int i = 0; i < certList.Length; i++)
			{
				certList[i] = X509CertificateStructure.GetInstance(certSet[i]);
			}
		}

		public CscaMasterList(
			X509CertificateStructure[] certStructs)
		{
			certList = CopyCertList(certStructs);
		}

		public virtual int Version
		{
            get { return version.IntValueExact; }
		}

		public X509CertificateStructure[] GetCertStructs()
		{
			return CopyCertList(certList);
		}

		private static X509CertificateStructure[] CopyCertList(X509CertificateStructure[] orig)
		{
			return (X509CertificateStructure[])orig.Clone();
		}

		public override Asn1Object ToAsn1Object() 
		{
			return new DerSequence(version, new DerSet(certList));
		}
	}
}