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