mirrored from https://www.bouncycastle.org/repositories/bc-csharp
-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathMacUtilities.cs
More file actions
325 lines (292 loc) · 13 KB
/
Copy pathMacUtilities.cs
File metadata and controls
325 lines (292 loc) · 13 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Iana;
using Org.BouncyCastle.Asn1.Misc;
using Org.BouncyCastle.Asn1.Nist;
using Org.BouncyCastle.Asn1.Oiw;
using Org.BouncyCastle.Asn1.Pkcs;
using Org.BouncyCastle.Asn1.Rosstandart;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Engines;
using Org.BouncyCastle.Crypto.Macs;
using Org.BouncyCastle.Crypto.Paddings;
using Org.BouncyCastle.Utilities;
using Org.BouncyCastle.Utilities.Collections;
namespace Org.BouncyCastle.Security
{
/// <summary>
/// Factory for <see cref="IMac"/> instances (HMAC, CMAC, GMAC, Poly1305, etc.) and convenience helpers for
/// one-shot MAC computation.
/// </summary>
/// <remarks>
/// MACs can be looked up by canonical name (e.g. <c>"HMAC-SHA256"</c>, <c>"AESCMAC"</c>) or by ASN.1 OID;
/// names are matched case-insensitively. The returned <see cref="IMac"/> is uninitialised — the caller
/// must invoke <see cref="IMac.Init"/> with a key before processing data.
/// </remarks>
public static class MacUtilities
{
private static readonly Dictionary<string, string> AlgorithmMap =
new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
private static readonly Dictionary<DerObjectIdentifier, string> AlgorithmOidMap =
new Dictionary<DerObjectIdentifier, string>();
static MacUtilities()
{
AlgorithmOidMap[IanaObjectIdentifiers.HmacMD5] = "HMAC-MD5";
AlgorithmOidMap[IanaObjectIdentifiers.HmacRipeMD160] = "HMAC-RIPEMD160";
AlgorithmOidMap[IanaObjectIdentifiers.HmacSha1] = "HMAC-SHA1";
AlgorithmOidMap[IanaObjectIdentifiers.HmacTiger] = "HMAC-TIGER";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha1] = "HMAC-SHA1";
AlgorithmOidMap[MiscObjectIdentifiers.HMAC_SHA1] = "HMAC-SHA1";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha224] = "HMAC-SHA224";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha256] = "HMAC-SHA256";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha384] = "HMAC-SHA384";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha512] = "HMAC-SHA512";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha512_224] = "HMAC-SHA512-224";
AlgorithmOidMap[PkcsObjectIdentifiers.IdHmacWithSha512_256] = "HMAC-SHA512-256";
AlgorithmOidMap[NistObjectIdentifiers.IdHMacWithSha3_224] = "HMAC-SHA3-224";
AlgorithmOidMap[NistObjectIdentifiers.IdHMacWithSha3_256] = "HMAC-SHA3-256";
AlgorithmOidMap[NistObjectIdentifiers.IdHMacWithSha3_384] = "HMAC-SHA3-384";
AlgorithmOidMap[NistObjectIdentifiers.IdHMacWithSha3_512] = "HMAC-SHA3-512";
AlgorithmOidMap[RosstandartObjectIdentifiers.id_tc26_hmac_gost_3411_12_256] = "HMAC-GOST3411-2012-256";
AlgorithmOidMap[RosstandartObjectIdentifiers.id_tc26_hmac_gost_3411_12_512] = "HMAC-GOST3411-2012-512";
// TODO AESMAC?
AlgorithmMap["DES"] = "DESMAC";
AlgorithmMap["DES/CFB8"] = "DESMAC/CFB8";
AlgorithmMap["DES64"] = "DESMAC64";
AlgorithmMap["DESEDE"] = "DESEDEMAC";
AlgorithmOidMap[PkcsObjectIdentifiers.DesEde3Cbc] = "DESEDEMAC";
AlgorithmMap["DESEDE/CFB8"] = "DESEDEMAC/CFB8";
AlgorithmMap["DESISO9797MAC"] = "DESWITHISO9797";
AlgorithmMap["DESEDE64"] = "DESEDEMAC64";
AlgorithmMap["DESEDE64WITHISO7816-4PADDING"] = "DESEDEMAC64WITHISO7816-4PADDING";
AlgorithmMap["DESEDEISO9797ALG1MACWITHISO7816-4PADDING"] = "DESEDEMAC64WITHISO7816-4PADDING";
AlgorithmMap["DESEDEISO9797ALG1WITHISO7816-4PADDING"] = "DESEDEMAC64WITHISO7816-4PADDING";
AlgorithmMap["ISO9797ALG3"] = "ISO9797ALG3MAC";
AlgorithmMap["ISO9797ALG3MACWITHISO7816-4PADDING"] = "ISO9797ALG3WITHISO7816-4PADDING";
AlgorithmMap["SKIPJACK"] = "SKIPJACKMAC";
AlgorithmMap["SKIPJACK/CFB8"] = "SKIPJACKMAC/CFB8";
AlgorithmMap["IDEA"] = "IDEAMAC";
AlgorithmMap["IDEA/CFB8"] = "IDEAMAC/CFB8";
AlgorithmMap["RC2"] = "RC2MAC";
AlgorithmMap["RC2/CFB8"] = "RC2MAC/CFB8";
AlgorithmMap["RC5"] = "RC5MAC";
AlgorithmMap["RC5/CFB8"] = "RC5MAC/CFB8";
AlgorithmMap["GOST28147"] = "GOST28147MAC";
AlgorithmMap["VMPC"] = "VMPCMAC";
AlgorithmMap["VMPC-MAC"] = "VMPCMAC";
AlgorithmMap["SIPHASH"] = "SIPHASH-2-4";
AlgorithmMap["PBEWITHHMACSHA"] = "PBEWITHHMACSHA1";
AlgorithmOidMap[OiwObjectIdentifiers.IdSha1] = "PBEWITHHMACSHA1";
#if DEBUG
foreach (var key in AlgorithmMap.Keys)
{
if (DerObjectIdentifier.TryFromID(key, out var ignore))
throw new Exception("OID mapping belongs in AlgorithmOidMap: " + key);
}
var mechanisms = new HashSet<string>(AlgorithmMap.Values);
mechanisms.UnionWith(AlgorithmOidMap.Values);
foreach (var mechanism in mechanisms)
{
if (AlgorithmMap.TryGetValue(mechanism, out var check))
{
if (mechanism != check)
throw new Exception("Mechanism mapping MUST be to self: " + mechanism);
}
else
{
if (!mechanism.Equals(mechanism.ToUpperInvariant()))
throw new Exception("Unmapped mechanism MUST be uppercase: " + mechanism);
}
}
#endif
}
/// <summary>
/// One-shot MAC of <paramref name="input"/> using the named algorithm and the supplied key parameters.
/// </summary>
/// <param name="algorithm">A MAC name or alias (e.g. <c>"HMAC-SHA256"</c>).</param>
/// <param name="cp">Key (and any other) parameters required to initialise the MAC.</param>
/// <param name="input">The data to authenticate.</param>
public static byte[] CalculateMac(string algorithm, ICipherParameters cp, byte[] input)
{
IMac mac = GetMac(algorithm);
mac.Init(cp);
mac.BlockUpdate(input, 0, input.Length);
return DoFinal(mac);
}
/// <summary>Finalises <paramref name="mac"/> and returns the resulting tag as a fresh array.</summary>
public static byte[] DoFinal(IMac mac)
{
byte[] b = new byte[mac.GetMacSize()];
mac.DoFinal(b, 0);
return b;
}
/// <summary>Feeds <paramref name="input"/> into <paramref name="mac"/>, then finalises and returns the
/// tag.</summary>
public static byte[] DoFinal(IMac mac, byte[] input)
{
mac.BlockUpdate(input, 0, input.Length);
return DoFinal(mac);
}
/// <summary>
/// Returns the canonical algorithm name registered for the given ASN.1 OID, or <c>null</c> if the OID
/// is not mapped to a known MAC.
/// </summary>
public static string GetAlgorithmName(DerObjectIdentifier oid)
{
return CollectionUtilities.GetValueOrNull(AlgorithmOidMap, oid);
}
/// <summary>Resolve and instantiate an <see cref="IMac"/> for the given ASN.1 algorithm OID.</summary>
/// <exception cref="ArgumentNullException">If <paramref name="id"/> is <c>null</c>.</exception>
/// <exception cref="SecurityUtilityException">If the OID does not map to a known MAC.</exception>
// TODO[api] Change parameter name to 'oid'
public static IMac GetMac(DerObjectIdentifier id)
{
if (id == null)
throw new ArgumentNullException(nameof(id));
if (AlgorithmOidMap.TryGetValue(id, out var mechanism))
{
var mac = GetMacForMechanism(mechanism);
if (mac != null)
return mac;
}
throw new SecurityUtilityException("Mac OID not recognised.");
}
/// <summary>Resolve and instantiate an <see cref="IMac"/> by name (or alias).</summary>
/// <param name="algorithm">A MAC name (e.g. <c>"HMAC-SHA512"</c>, <c>"AESCMAC"</c>,
/// <c>"POLY1305"</c>).</param>
/// <exception cref="ArgumentNullException">If <paramref name="algorithm"/> is <c>null</c>.</exception>
/// <exception cref="SecurityUtilityException">If the MAC name is not recognised.</exception>
public static IMac GetMac(string algorithm)
{
if (algorithm == null)
throw new ArgumentNullException(nameof(algorithm));
string mechanism = GetMechanism(algorithm) ?? algorithm.ToUpperInvariant();
var mac = GetMacForMechanism(mechanism);
if (mac != null)
return mac;
throw new SecurityUtilityException("Mac " + algorithm + " not recognised.");
}
private static IMac GetMacForMechanism(string mechanism)
{
if (Platform.StartsWith(mechanism, "PBEWITH"))
{
mechanism = mechanism.Substring("PBEWITH".Length);
}
if (Platform.StartsWith(mechanism, "HMAC"))
{
string digestName;
if (Platform.StartsWith(mechanism, "HMAC-") || Platform.StartsWith(mechanism, "HMAC/"))
{
digestName = mechanism.Substring(5);
}
else
{
digestName = mechanism.Substring(4);
}
return new HMac(DigestUtilities.GetDigest(digestName));
}
if (mechanism == "AESCMAC")
{
return new CMac(AesUtilities.CreateEngine());
}
if (mechanism == "DESMAC")
{
return new CbcBlockCipherMac(new DesEngine());
}
if (mechanism == "DESMAC/CFB8")
{
return new CfbBlockCipherMac(new DesEngine());
}
if (mechanism == "DESMAC64")
{
return new CbcBlockCipherMac(new DesEngine(), 64);
}
if (mechanism == "DESEDECMAC")
{
return new CMac(new DesEdeEngine());
}
if (mechanism == "DESEDEMAC")
{
return new CbcBlockCipherMac(new DesEdeEngine());
}
if (mechanism == "DESEDEMAC/CFB8")
{
return new CfbBlockCipherMac(new DesEdeEngine());
}
if (mechanism == "DESEDEMAC64")
{
return new CbcBlockCipherMac(new DesEdeEngine(), 64);
}
if (mechanism == "DESEDEMAC64WITHISO7816-4PADDING")
{
return new CbcBlockCipherMac(new DesEdeEngine(), 64, new ISO7816d4Padding());
}
if (mechanism == "DESWITHISO9797"
|| mechanism == "ISO9797ALG3MAC")
{
return new ISO9797Alg3Mac(new DesEngine());
}
if (mechanism == "ISO9797ALG3WITHISO7816-4PADDING")
{
return new ISO9797Alg3Mac(new DesEngine(), new ISO7816d4Padding());
}
if (mechanism == "SKIPJACKMAC")
{
return new CbcBlockCipherMac(new SkipjackEngine());
}
if (mechanism == "SKIPJACKMAC/CFB8")
{
return new CfbBlockCipherMac(new SkipjackEngine());
}
if (mechanism == "IDEAMAC")
{
return new CbcBlockCipherMac(new IdeaEngine());
}
if (mechanism == "IDEAMAC/CFB8")
{
return new CfbBlockCipherMac(new IdeaEngine());
}
if (mechanism == "RC2MAC")
{
return new CbcBlockCipherMac(new RC2Engine());
}
if (mechanism == "RC2MAC/CFB8")
{
return new CfbBlockCipherMac(new RC2Engine());
}
if (mechanism == "RC5MAC")
{
return new CbcBlockCipherMac(new RC532Engine());
}
if (mechanism == "RC5MAC/CFB8")
{
return new CfbBlockCipherMac(new RC532Engine());
}
if (mechanism == "GOST28147MAC")
{
return new Gost28147Mac();
}
if (mechanism == "VMPCMAC")
{
return new VmpcMac();
}
if (mechanism == "SIPHASH-2-4")
{
return new SipHash();
}
return null;
}
private static string GetMechanism(string algorithm)
{
if (AlgorithmMap.TryGetValue(algorithm, out var mechanism1))
return mechanism1;
if (DerObjectIdentifier.TryFromID(algorithm, out var oid))
{
if (AlgorithmOidMap.TryGetValue(oid, out var mechanism2))
return mechanism2;
}
return null;
}
}
}