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

CipherMode.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b64fe175111916583dfc0953fec35e0d218f39aa (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
//
// System.Security.Cryptography CipherMode enumeration
//
// Authors:
//   Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)
//
// Copyright 2001 by Matthew S. Ford.
//


namespace System.Security.Cryptography {

	/// <summary>
	/// Block cipher modes of operation.
	/// </summary>
	public enum CipherMode {
		CBC = 0x1, // Cipher Block Chaining
		ECB, // Electronic Codebook
		OFB, // Output Feedback
		CFB, // Cipher Feedback
		CTS, // Cipher Text Stealing
	}
}