blob: f2517aa571ca9eb0e737ac05c640b7acfffb45a6 (
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
104
105
106
107
108
109
110
111
112
113
114
|
using System;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Crmf
{
public class PopoSigningKeyInput
: Asn1Encodable
{
private readonly GeneralName sender;
private readonly PKMacValue publicKeyMac;
private readonly SubjectPublicKeyInfo publicKey;
private PopoSigningKeyInput(Asn1Sequence seq)
{
Asn1Encodable authInfo = (Asn1Encodable)seq[0];
if (authInfo is Asn1TaggedObject tagObj)
{
if (tagObj.TagNo != 0)
throw new ArgumentException("Unknown authInfo tag: " + tagObj.TagNo, nameof(seq));
sender = GeneralName.GetInstance(tagObj.GetObject());
}
else
{
publicKeyMac = PKMacValue.GetInstance(authInfo);
}
publicKey = SubjectPublicKeyInfo.GetInstance(seq[1]);
}
public static PopoSigningKeyInput GetInstance(object obj)
{
if (obj is PopoSigningKeyInput)
return (PopoSigningKeyInput)obj;
if (obj is Asn1Sequence)
return new PopoSigningKeyInput((Asn1Sequence)obj);
throw new ArgumentException("Invalid object: " + Platform.GetTypeName(obj), "obj");
}
/** Creates a new PopoSigningKeyInput with sender name as authInfo. */
public PopoSigningKeyInput(
GeneralName sender,
SubjectPublicKeyInfo spki)
{
this.sender = sender;
this.publicKey = spki;
}
/** Creates a new PopoSigningKeyInput using password-based MAC. */
public PopoSigningKeyInput(
PKMacValue pkmac,
SubjectPublicKeyInfo spki)
{
this.publicKeyMac = pkmac;
this.publicKey = spki;
}
/** Returns the sender field, or null if authInfo is publicKeyMac */
public virtual GeneralName Sender
{
get { return sender; }
}
/** Returns the publicKeyMac field, or null if authInfo is sender */
public virtual PKMacValue PublicKeyMac
{
get { return publicKeyMac; }
}
public virtual SubjectPublicKeyInfo PublicKey
{
get { return publicKey; }
}
/**
* <pre>
* PopoSigningKeyInput ::= SEQUENCE {
* authInfo CHOICE {
* sender [0] GeneralName,
* -- used only if an authenticated identity has been
* -- established for the sender (e.g., a DN from a
* -- previously-issued and currently-valid certificate
* publicKeyMac PKMacValue },
* -- used if no authenticated GeneralName currently exists for
* -- the sender; publicKeyMac contains a password-based MAC
* -- on the DER-encoded value of publicKey
* publicKey SubjectPublicKeyInfo } -- from CertTemplate
* </pre>
* @return a basic ASN.1 object representation.
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(2);
if (sender != null)
{
v.Add(new DerTaggedObject(false, 0, sender));
}
else
{
v.Add(publicKeyMac);
}
v.Add(publicKey);
return new DerSequence(v);
}
}
}
|