blob: 2c8ba4ffff9d9f814ab3a96e5e6fd0c37168a1b6 (
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
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>RFC 5246 7.4.1.4.1</summary>
public abstract class HashAlgorithm
{
public const short none = 0;
public const short md5 = 1;
public const short sha1 = 2;
public const short sha224 = 3;
public const short sha256 = 4;
public const short sha384 = 5;
public const short sha512 = 6;
/*
* RFC 8422
*/
public const short Intrinsic = 8;
public static string GetName(short hashAlgorithm)
{
switch (hashAlgorithm)
{
case none:
return "none";
case md5:
return "md5";
case sha1:
return "sha1";
case sha224:
return "sha224";
case sha256:
return "sha256";
case sha384:
return "sha384";
case sha512:
return "sha512";
case Intrinsic:
return "Intrinsic";
default:
return "UNKNOWN";
}
}
public static int GetOutputSize(short hashAlgorithm)
{
switch (hashAlgorithm)
{
case md5:
return 16;
case sha1:
return 20;
case sha224:
return 28;
case sha256:
return 32;
case sha384:
return 48;
case sha512:
return 64;
default:
return -1;
}
}
public static string GetText(short hashAlgorithm)
{
return GetName(hashAlgorithm) + "(" + hashAlgorithm + ")";
}
public static bool IsPrivate(short hashAlgorithm)
{
return 224 <= hashAlgorithm && hashAlgorithm <= 255;
}
public static bool IsRecognized(short hashAlgorithm)
{
switch (hashAlgorithm)
{
case md5:
case sha1:
case sha224:
case sha256:
case sha384:
case sha512:
case Intrinsic:
return true;
default:
return false;
}
}
}
}
|