forked from AlexMAS/GostCryptography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGostSignatureDeformatter.cs
90 lines (76 loc) · 2.78 KB
/
GostSignatureDeformatter.cs
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
using System;
using System.Security.Cryptography;
using GostCryptography.Properties;
namespace GostCryptography.Cryptography
{
/// <summary>
/// Класс проверки цифровой подписи по ГОСТ Р 34.10-2001.
/// </summary>
public sealed class GostSignatureDeformatter : AsymmetricSignatureDeformatter
{
/// <summary>
/// Конструктор.
/// </summary>
public GostSignatureDeformatter()
{
}
/// <summary>
/// Конструктор.
/// </summary>
/// <param name="publicKey">Открытый ключ для проверки цифровой подписи.</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
/// <exception cref="ArgumentNullException"></exception>
public GostSignatureDeformatter(AsymmetricAlgorithm publicKey)
: this()
{
SetKey(publicKey);
}
private Gost3410AsymmetricAlgorithmBase _publicKey;
/// <summary>
/// Устанавливает открытый ключ для проверки цифрововй подписи.
/// </summary>
/// <param name="publicKey">Открытый ключ для проверки цифровой подписи.</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
/// <exception cref="ArgumentNullException"></exception>
public override void SetKey(AsymmetricAlgorithm publicKey)
{
if (publicKey == null)
{
throw ExceptionUtility.ArgumentNull("publicKey");
}
if (!(publicKey is Gost3410AsymmetricAlgorithmBase))
{
throw ExceptionUtility.ArgumentOutOfRange("publicKey", Resources.ShouldSupportGost3410);
}
_publicKey = (Gost3410AsymmetricAlgorithmBase)publicKey;
}
/// <summary>
/// Устанавливает алгоритм хэширования для проверки цифрововй подпси.
/// </summary>
/// <param name="hashAlgorithmName">Наименование алгоритма хэширования.</param>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public override void SetHashAlgorithm(string hashAlgorithmName)
{
}
/// <summary>
/// Проверяет цифровую подпись.
/// </summary>
/// <param name="hash">Значение хэша данных.</param>
/// <param name="signature">Значение цифровой подписи данных.</param>
/// <exception cref="ArgumentNullException"></exception>
public override bool VerifySignature(byte[] hash, byte[] signature)
{
if (hash == null)
{
throw ExceptionUtility.ArgumentNull("hash");
}
if (signature == null)
{
throw ExceptionUtility.ArgumentNull("signature");
}
var reverseSignature = (byte[])signature.Clone();
Array.Reverse(reverseSignature);
return _publicKey.VerifySignature(hash, reverseSignature);
}
}
}