blob: d866fef5dc874c3fdf792d71af1462144b7ed09e (
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
|
using System;
namespace Org.BouncyCastle.Asn1.Esf
{
/// <remarks>
/// RFC 3126: 4.2.2 Complete Revocation Refs Attribute Definition
/// <code>
/// OtherRevRefs ::= SEQUENCE
/// {
/// otherRevRefType OtherRevRefType,
/// otherRevRefs ANY DEFINED BY otherRevRefType
/// }
///
/// OtherRevRefType ::= OBJECT IDENTIFIER
/// </code>
/// </remarks>
public class OtherRevRefs
: Asn1Encodable
{
public static OtherRevRefs GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is OtherRevRefs otherRevRefs)
return otherRevRefs;
return new OtherRevRefs(Asn1Sequence.GetInstance(obj));
}
public static OtherRevRefs GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit) =>
new OtherRevRefs(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
public static OtherRevRefs GetTagged(Asn1TaggedObject taggedObject, bool declaredExplicit) =>
new OtherRevRefs(Asn1Sequence.GetTagged(taggedObject, declaredExplicit));
private readonly DerObjectIdentifier m_otherRevRefType;
private readonly Asn1Encodable m_otherRevRefs;
private OtherRevRefs(Asn1Sequence seq)
{
int count = seq.Count;
if (count != 2)
throw new ArgumentException("Bad sequence size: " + count, nameof(seq));
m_otherRevRefType = DerObjectIdentifier.GetInstance(seq[0]);
m_otherRevRefs = seq[1];
}
public OtherRevRefs(DerObjectIdentifier otherRevRefType, Asn1Encodable otherRevRefs)
{
m_otherRevRefType = otherRevRefType ?? throw new ArgumentNullException(nameof(otherRevRefType));
m_otherRevRefs = otherRevRefs ?? throw new ArgumentNullException(nameof(otherRevRefs));
}
public DerObjectIdentifier OtherRevRefType => m_otherRevRefType;
public Asn1Encodable OtherRevRefsData => m_otherRevRefs;
[Obsolete("Use 'OtherRevRefsData' instead")]
public Asn1Object OtherRevRefsObject => m_otherRevRefs.ToAsn1Object();
public override Asn1Object ToAsn1Object() => new DerSequence(m_otherRevRefType, m_otherRevRefs);
}
}
|