blob: 9edf6a8c81c1a45a5302ddf4ec436a5b28f81aa8 (
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
|
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Cms
{
public class SignerIdentifier
: Asn1Encodable, IAsn1Choice
{
private Asn1Encodable id;
public SignerIdentifier(
IssuerAndSerialNumber id)
{
this.id = id;
}
public SignerIdentifier(
Asn1OctetString id)
{
this.id = new DerTaggedObject(false, 0, id);
}
public SignerIdentifier(
Asn1Object id)
{
this.id = id;
}
/**
* return a SignerIdentifier object from the given object.
*
* @param o the object we want converted.
* @exception ArgumentException if the object cannot be converted.
*/
public static SignerIdentifier GetInstance(
object o)
{
if (o == null || o is SignerIdentifier)
return (SignerIdentifier) o;
if (o is IssuerAndSerialNumber)
return new SignerIdentifier((IssuerAndSerialNumber) o);
if (o is Asn1OctetString)
return new SignerIdentifier((Asn1OctetString) o);
if (o is Asn1Object)
return new SignerIdentifier((Asn1Object) o);
throw new ArgumentException(
"Illegal object in SignerIdentifier: " + Platform.GetTypeName(o));
}
public bool IsTagged
{
get { return (id is Asn1TaggedObject); }
}
public Asn1Encodable ID
{
get
{
if (id is Asn1TaggedObject taggedObject)
return Asn1OctetString.GetInstance(taggedObject, false);
return id;
}
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* SignerIdentifier ::= CHOICE {
* issuerAndSerialNumber IssuerAndSerialNumber,
* subjectKeyIdentifier [0] SubjectKeyIdentifier
* }
*
* SubjectKeyIdentifier ::= OCTET STRING
* </pre>
*/
public override Asn1Object ToAsn1Object()
{
return id.ToAsn1Object();
}
}
}
|