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

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

using System;

namespace System.Security.Cryptography {
	
	[MonoTODO]
	public abstract class RSA : AsymmetricAlgorithm {
		public static new RSA Create () { return null; }
		public static new RSA Create (string alg) { return Create (); }
	
		public RSA () { }

		public abstract byte[] EncryptValue (byte[] rgb);
		public abstract byte[] DecryptValue (byte[] rgb);

		public abstract RSAParameters ExportParameters (bool include);
		public abstract void ImportParameters (RSAParameters parameters);

		public override void FromXmlString (string xml) {
		}

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