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

DSACryptoServiceProvider.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7c7158fb67e37564698fb1b004c7b3ea83e61f3 (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
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
//
// System.Security.Cryptography.DSACryptoServiceProvider.cs
//
// Authors:
//   Dan Lewis (dihlewis@yahoo.co.uk)
//
// (C) 2002
//
// Stubbed.
//

using System;
using System.IO;

namespace System.Security.Cryptography {
	
	[MonoTODO]
	public class DSACryptoServiceProvider : DSA {
		public DSACryptoServiceProvider () { }
		public DSACryptoServiceProvider (CspParameters parameters) { }
		public DSACryptoServiceProvider (int key_size) { }
		public DSACryptoServiceProvider (int key_size, CspParameters parameters) { }

		public override string KeyExchangeAlgorithm {
			get { return null; }
		}

		public override int KeySize {
			get { return 0; }
		}

		public override KeySizes[] LegalKeySizes {
			get { return null; }
		}

		public override string SignatureAlgorithm {
			get { return null; }
		}

		public bool PersistKeyInCsp {
			get { return false; }
			set { }
		}
		
		public override byte[] CreateSignature (byte[] rgb) {
			return null;
		}
		
		public override bool VerifySignature(byte[] hash, byte[] sig) {
			return false;
		}

		public byte[] SignData (byte[] data) {
			return SignData (data, 0, data.Length);
		}

		public byte[] SignData (byte[] data, int offset, int count) {
			return null;
		}

		public byte[] SignData (Stream data) {
			return null;
		}

		public byte[] SignHash (byte[] hash, string str) {
			return null;
		}

		public bool VerifyData (byte[] data, byte[] sig) {
			return false;
		}

		public override DSAParameters ExportParameters (bool include) {
			return new DSAParameters ();
		}

		public override void ImportParameters (DSAParameters parameters) {
		}

		public override void FromXmlString(string xmlString) {
		}

		public override string ToXmlString(bool includePrivateParameters) {
			return null;
		}
	}
}