blob: ca94b5bfe0bd08272e5c7e45b5cffc24e1800b20 (
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 Org.BouncyCastle.Utilities;
using System;
namespace Org.BouncyCastle.Asn1.Nist
{
/// <summary>
/// KMACwithSHAKE128-params ::= SEQUENCE {
/// kMACOutputLength INTEGER DEFAULT 256, -- Output length in bits
/// customizationString OCTET STRING DEFAULT ''H
/// }
/// </summary>
public class KMacWithShake128Params : Asn1Encodable
{
private static readonly byte[] EMPTY_STRING = new byte[0];
private static readonly int DEF_LENGTH = 256;
private readonly int outputLength;
private readonly byte[] customizationString;
public KMacWithShake128Params(int outputLength)
{
this.outputLength = outputLength;
this.customizationString = EMPTY_STRING;
}
public KMacWithShake128Params(int outputLength, byte[] customizationString)
{
this.outputLength = outputLength;
this.customizationString = Arrays.Clone(customizationString);
}
public static KMacWithShake128Params GetInstance(object o)
{
if (o is KMacWithShake128Params)
{
return (KMacWithShake128Params)o;
}
else if (o != null)
{
return new KMacWithShake128Params(Asn1Sequence.GetInstance(o));
}
return null;
}
private KMacWithShake128Params(Asn1Sequence seq)
{
if (seq.Count > 2)
throw new InvalidOperationException("sequence size greater than 2");
if (seq.Count == 2)
{
this.outputLength = DerInteger.GetInstance(seq[0]).IntValueExact;
this.customizationString = Arrays.Clone(Asn1OctetString.GetInstance(seq[1]).GetOctets());
}
else if (seq.Count == 1)
{
if (seq[0] is DerInteger derInteger)
{
this.outputLength = derInteger.IntValueExact;
this.customizationString = EMPTY_STRING;
}
else
{
this.outputLength = DEF_LENGTH;
this.customizationString = Arrays.Clone(Asn1OctetString.GetInstance(seq[0]).GetOctets());
}
}
else
{
this.outputLength = DEF_LENGTH;
this.customizationString = EMPTY_STRING;
}
}
public int OutputLength
{
get { return outputLength; }
}
public byte[] CustomizationString
{
get { return Arrays.Clone(customizationString); }
}
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(2);
if (outputLength != DEF_LENGTH)
{
v.Add(new DerInteger(outputLength));
}
if (customizationString.Length != 0)
{
v.Add(new DerOctetString(CustomizationString));
}
return new DerSequence(v);
}
}
}
|