blob: 12b8d91d3b31c1e1c20718eb5d22aa42cb6920a1 (
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
|
using System;
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Asn1.Cmp
{
/**
* DHBMParameter ::= SEQUENCE {
* owf AlgorithmIdentifier,
* -- AlgId for a One-Way Function (SHA-1 recommended)
* mac AlgorithmIdentifier
* -- the MAC AlgId (e.g., DES-MAC, Triple-DES-MAC [PKCS11],
* } -- or HMAC [RFC2104, RFC2202])
*/
public class DhbmParameter
: Asn1Encodable
{
public static DhbmParameter GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is DhbmParameter dhbmParameter)
return dhbmParameter;
return new DhbmParameter(Asn1Sequence.GetInstance(obj));
}
public static DhbmParameter GetInstance(Asn1TaggedObject taggedObject, bool declaredExplicit)
{
return GetInstance(Asn1Sequence.GetInstance(taggedObject, declaredExplicit));
}
private readonly AlgorithmIdentifier m_owf;
private readonly AlgorithmIdentifier m_mac;
private DhbmParameter(Asn1Sequence sequence)
{
if (sequence.Count != 2)
throw new ArgumentException("expecting sequence size of 2");
m_owf = AlgorithmIdentifier.GetInstance(sequence[0]);
m_mac = AlgorithmIdentifier.GetInstance(sequence[1]);
}
public DhbmParameter(AlgorithmIdentifier owf, AlgorithmIdentifier mac)
{
m_owf = owf;
m_mac = mac;
}
public virtual AlgorithmIdentifier Owf => m_owf;
public virtual AlgorithmIdentifier Mac => m_mac;
public override Asn1Object ToAsn1Object()
{
return new DerSequence(m_owf, m_mac);
}
}
}
|