blob: bd80fe9ecd344dfd5cd57220219a73a32f9e0c8e (
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
|
using System;
namespace Org.BouncyCastle.Asn1.X509
{
/**
* The OtherName object.
* <pre>
* OtherName ::= SEQUENCE {
* type-id OBJECT IDENTIFIER,
* value [0] EXPLICIT ANY DEFINED BY type-id }
* </pre>
*/
public class OtherName
: Asn1Encodable
{
/**
* OtherName factory method.
* @param obj the object used to construct an instance of <code>
* OtherName</code>. It must be an instance of <code>OtherName
* </code> or <code>ASN1Sequence</code>.
* @return the instance of <code>OtherName</code> built from the
* supplied object.
* @throws java.lang.IllegalArgumentException if the object passed
* to the factory is not an instance of <code>OtherName</code> or something that
* can be converted into an appropriate <code>ASN1Sequence</code>.
*/
public static OtherName GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is OtherName otherName)
return otherName;
return new OtherName(Asn1Sequence.GetInstance(obj));
}
public static OtherName GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
{
return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
}
private readonly DerObjectIdentifier typeID;
private readonly Asn1Encodable value;
/**
* Base constructor.
* @param typeID the type of the other name.
* @param value the ANY object that represents the value.
*/
public OtherName(DerObjectIdentifier typeID, Asn1Encodable value)
{
this.typeID = typeID;
this.value = value;
}
private OtherName(Asn1Sequence seq)
{
this.typeID = DerObjectIdentifier.GetInstance(seq[0]);
this.value = Asn1Utilities.GetExplicitContextBaseObject(Asn1TaggedObject.GetInstance(seq[1]), tagNo: 0);
}
public virtual DerObjectIdentifier TypeID => typeID;
public Asn1Encodable Value => value;
public override Asn1Object ToAsn1Object()
{
return new DerSequence(typeID, new DerTaggedObject(true, 0, value));
}
}
}
|