summary refs log tree commit diff
path: root/Crypto/src/asn1/ess/SigningCertificateV2.cs
blob: a2aff48667387484e35d166301f0616c236da428 (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
using System;

using Org.BouncyCastle.Asn1.X509;

namespace Org.BouncyCastle.Asn1.Ess
{
	public class SigningCertificateV2
		: Asn1Encodable
	{
		private readonly Asn1Sequence certs;
		private readonly Asn1Sequence policies;

		public static SigningCertificateV2 GetInstance(
			object o)
		{
			if (o == null || o is SigningCertificateV2)
				return (SigningCertificateV2) o;

			if (o is Asn1Sequence)
				return new SigningCertificateV2((Asn1Sequence) o);

			throw new ArgumentException(
				"unknown object in 'SigningCertificateV2' factory : "
				+ o.GetType().Name + ".");
		}

		private SigningCertificateV2(
			Asn1Sequence seq)
		{
			if (seq.Count < 1 || seq.Count > 2)
				throw new ArgumentException("Bad sequence size: " + seq.Count, "seq");

			this.certs = Asn1Sequence.GetInstance(seq[0].ToAsn1Object());

			if (seq.Count > 1)
			{
				this.policies = Asn1Sequence.GetInstance(seq[1].ToAsn1Object());
			}
		}

		public SigningCertificateV2(
			EssCertIDv2[] certs)
		{
			this.certs = new DerSequence(certs);
		}

		public SigningCertificateV2(
			EssCertIDv2[]		certs,
			PolicyInformation[]	policies)
		{
			this.certs = new DerSequence(certs);

			if (policies != null)
			{
				this.policies = new DerSequence(policies);
			}
		}

		public EssCertIDv2[] GetCerts()
		{
			EssCertIDv2[] certIds = new EssCertIDv2[certs.Count];
			for (int i = 0; i != certs.Count; i++)
			{
				certIds[i] = EssCertIDv2.GetInstance(certs[i]);
			}
			return certIds;
		}

		public PolicyInformation[] GetPolicies()
		{
			if (policies == null)
				return null;

			PolicyInformation[] policyInformations = new PolicyInformation[policies.Count];
			for (int i = 0; i != policies.Count; i++)
			{
				policyInformations[i] = PolicyInformation.GetInstance(policies[i]);
			}
			return policyInformations;
		}

		/**
		 * The definition of SigningCertificateV2 is
		 * <pre>
		 * SigningCertificateV2 ::=  SEQUENCE {
		 *      certs        SEQUENCE OF EssCertIDv2,
		 *      policies     SEQUENCE OF PolicyInformation OPTIONAL
		 * }
		 * </pre>
		 * id-aa-signingCertificateV2 OBJECT IDENTIFIER ::= { iso(1)
		 *    member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
		 *    smime(16) id-aa(2) 47 }
		 */
		public override Asn1Object ToAsn1Object()
		{
			Asn1EncodableVector v = new Asn1EncodableVector(certs);

			if (policies != null)
			{
				v.Add(policies);
			}

			return new DerSequence(v);
		}
	}
}