b64fe175111916583dfc0953fec35e0d218f39aa
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CipherMode.cs
1 //\r
2 // System.Security.Cryptography CipherMode enumeration\r
3 //\r
4 // Authors:\r
5 //   Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)\r
6 //\r
7 // Copyright 2001 by Matthew S. Ford.\r
8 //\r
9 \r
10 \r
11 namespace System.Security.Cryptography {\r
12 \r
13         /// <summary>\r
14         /// Block cipher modes of operation.\r
15         /// </summary>\r
16         public enum CipherMode {\r
17                 CBC = 0x1, // Cipher Block Chaining\r
18                 ECB, // Electronic Codebook\r
19                 OFB, // Output Feedback\r
20                 CFB, // Cipher Feedback\r
21                 CTS, // Cipher Text Stealing\r
22         }\r
23 }\r
24 \r