Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DSASignatureDeformatter.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 999381a9afedf272184b962f6a6622cae0536875 (plain)
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
//
// System.Security.Cryptography DSASignatureDeformatter.cs
//
// Author:
//   Thomas Neidhart (tome@sbox.tugraz.at)
//

using System;

namespace System.Security.Cryptography
{

	/// <summary>
	/// DSA Signature Deformatter
	/// </summary>
	public class DSASignatureDeformatter : AsymmetricSignatureDeformatter
	{
		[MonoTODO]
		public DSASignatureDeformatter()
		{
			// TODO: implement
		}

		[MonoTODO]
		public DSASignatureDeformatter(AsymmetricAlgorithm key)
		{
			// TODO: implement
		}

		
		public override void SetHashAlgorithm(string strName)
		{
			throw new CryptographicException("This method is not used");
		}

		[MonoTODO]
		public override void SetKey(AsymmetricAlgorithm key)
		{
			// TODO: implement
		}

		[MonoTODO]
		public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature)
		{
			// TODO: implement
			return false;
		}
		
	} // DSASignatureDeformatter
	
} // System.Security.Cryptography