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

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

using System;

namespace System.Security.Cryptography {
	
	[MonoTODO]
	public abstract class Rijndael : SymmetricAlgorithm {
		public static new Rijndael Create () { return null; }
		public static new Rijndael Create (string alg) { return Create (); }
		
		public Rijndael () {
			KeySizeValue = 256;
			BlockSizeValue = 128;
			FeedbackSizeValue = 128;
		}
	}
}