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

using Org.BouncyCastle.Asn1.Crmf;
using Org.BouncyCastle.Asn1.X509;

namespace Org.BouncyCastle.Asn1.Cmp
{
	public class RevDetails
		: Asn1Encodable
	{
		private readonly CertTemplate certDetails;
		private readonly X509Extensions crlEntryDetails;

		private RevDetails(Asn1Sequence seq)
		{
			certDetails = CertTemplate.GetInstance(seq[0]);

			if  (seq.Count > 1)
			{
				crlEntryDetails = X509Extensions.GetInstance(seq[1]);
			}
		}

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

			if (obj is Asn1Sequence)
				return new RevDetails((Asn1Sequence)obj);

			throw new ArgumentException("Invalid object: " + obj.GetType().Name, "obj");
		}

		public RevDetails(CertTemplate certDetails)
		{
			this.certDetails = certDetails;
		}
		
		public RevDetails(CertTemplate certDetails, X509Extensions crlEntryDetails)
		{
			this.crlEntryDetails = crlEntryDetails;
		}

		public virtual CertTemplate CertDetails
		{
			get { return certDetails; }
		}

		public virtual X509Extensions CrlEntryDetails
		{
			get { return crlEntryDetails; }
		}

		/**
		* <pre>
		* RevDetails ::= SEQUENCE {
		*                  certDetails         CertTemplate,
		*                   -- allows requester to specify as much as they can about
		*                   -- the cert. for which revocation is requested
		*                   -- (e.g., for cases in which serialNumber is not available)
		*                   crlEntryDetails     Extensions       OPTIONAL
		*                   -- requested crlEntryExtensions
		*             }
		* </pre>
		* @return a basic ASN.1 object representation.
		*/
		public override Asn1Object ToAsn1Object()
		{
			Asn1EncodableVector v = new Asn1EncodableVector(certDetails);
			v.AddOptional(crlEntryDetails);
			return new DerSequence(v);
		}
	}
}