blob: 53c5c706b8a4587488bcfee874f436ff942ab83f (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
using System;
namespace Org.BouncyCastle.Asn1.Cms.Ecc
{
public class MQVuserKeyingMaterial
: Asn1Encodable
{
private OriginatorPublicKey ephemeralPublicKey;
private Asn1OctetString addedukm;
public MQVuserKeyingMaterial(
OriginatorPublicKey ephemeralPublicKey,
Asn1OctetString addedukm)
{
// TODO Check ephemeralPublicKey not null
this.ephemeralPublicKey = ephemeralPublicKey;
this.addedukm = addedukm;
}
private MQVuserKeyingMaterial(
Asn1Sequence seq)
{
// TODO Check seq has either 1 or 2 elements
this.ephemeralPublicKey = OriginatorPublicKey.GetInstance(seq[0]);
if (seq.Count > 1)
{
this.addedukm = Asn1OctetString.GetInstance(
(Asn1TaggedObject)seq[1], true);
}
}
/**
* return an AuthEnvelopedData object from a tagged object.
*
* @param obj the tagged object holding the object we want.
* @param isExplicit true if the object is meant to be explicitly
* tagged false otherwise.
* @throws ArgumentException if the object held by the
* tagged object cannot be converted.
*/
public static MQVuserKeyingMaterial GetInstance(
Asn1TaggedObject obj,
bool isExplicit)
{
return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
}
/**
* return an AuthEnvelopedData object from the given object.
*
* @param obj the object we want converted.
* @throws ArgumentException if the object cannot be converted.
*/
public static MQVuserKeyingMaterial GetInstance(
object obj)
{
if (obj == null || obj is MQVuserKeyingMaterial)
{
return (MQVuserKeyingMaterial)obj;
}
if (obj is Asn1Sequence)
{
return new MQVuserKeyingMaterial((Asn1Sequence)obj);
}
throw new ArgumentException("Invalid MQVuserKeyingMaterial: " + obj.GetType().Name);
}
public OriginatorPublicKey EphemeralPublicKey
{
get { return ephemeralPublicKey; }
}
public Asn1OctetString AddedUkm
{
get { return addedukm; }
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* MQVuserKeyingMaterial ::= SEQUENCE {
* ephemeralPublicKey OriginatorPublicKey,
* addedukm [0] EXPLICIT UserKeyingMaterial OPTIONAL }
* </pre>
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(ephemeralPublicKey);
if (addedukm != null)
{
v.Add(new DerTaggedObject(true, 0, addedukm));
}
return new DerSequence(v);
}
}
}
|