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
|
using System;
namespace Org.BouncyCastle.Asn1.Cmp
{
/**
* GenMsg: {id-it 20}, RootCaCertValue | < absent >
* GenRep: {id-it 18}, RootCaKeyUpdateContent | < absent >
* <p>
* RootCaCertValue ::= CMPCertificate
* </p><p>
* RootCaKeyUpdateValue ::= RootCaKeyUpdateContent
* </p><p>
* RootCaKeyUpdateContent ::= SEQUENCE {
* newWithNew CMPCertificate,
* newWithOld [0] CMPCertificate OPTIONAL,
* oldWithNew [1] CMPCertificate OPTIONAL
* }
* </p>
*/
public class RootCaKeyUpdateContent
: Asn1Encodable
{
public static RootCaKeyUpdateContent GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is RootCaKeyUpdateContent rootCaKeyUpdateContent)
return rootCaKeyUpdateContent;
return new RootCaKeyUpdateContent(Asn1Sequence.GetInstance(obj));
}
public static RootCaKeyUpdateContent GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
{
return new RootCaKeyUpdateContent(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
}
private readonly CmpCertificate m_newWithNew;
private readonly CmpCertificate m_newWithOld;
private readonly CmpCertificate m_oldWithNew;
public RootCaKeyUpdateContent(CmpCertificate newWithNew, CmpCertificate newWithOld, CmpCertificate oldWithNew)
{
m_newWithNew = newWithNew ?? throw new ArgumentNullException(nameof(newWithNew));
m_newWithOld = newWithOld;
m_oldWithNew = oldWithNew;
}
private RootCaKeyUpdateContent(Asn1Sequence seq)
{
int count = seq.Count, pos = 0;
if (count < 1 || count > 3)
throw new ArgumentException("Bad sequence size: " + count, nameof(seq));
m_newWithNew = CmpCertificate.GetInstance(seq[pos++]);
m_newWithOld = Asn1Utilities.ReadOptionalContextTagged(seq, ref pos, 0, true, CmpCertificate.GetInstance);
m_oldWithNew = Asn1Utilities.ReadOptionalContextTagged(seq, ref pos, 1, true, CmpCertificate.GetInstance);
if (pos != count)
throw new ArgumentException("Unexpected elements in sequence", nameof(seq));
}
public virtual CmpCertificate NewWithNew => m_newWithNew;
public virtual CmpCertificate NewWithOld => m_newWithOld;
public virtual CmpCertificate OldWithNew => m_oldWithNew;
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(3);
v.Add(m_newWithNew);
v.AddOptionalTagged(true, 0, m_newWithOld);
v.AddOptionalTagged(true, 1, m_oldWithNew);
return new DerSequence(v);
}
}
}
|