2004-04-05 Bernie Solomon <bernard@ugsolutions.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CipherMode.cs
index e2cab26df5318d6ae1e6d7716fa23af185d12a78..f154590dc99a97979fc80ee286ea4fcf2b7f9395 100644 (file)
@@ -1,24 +1,25 @@
-//\r
-// System.Security.Cryptography CipherMode enumeration\r
-//\r
-// Authors:\r
-//   Matthew S. Ford (Matthew.S.Ford@Rose-Hulman.Edu)\r
-//\r
-// Copyright 2001 by Matthew S. Ford.\r
-//\r
-\r
-\r
-namespace System.Security.Cryptography {\r
-\r
-       /// <summary>\r
-       /// Block cipher modes of operation.\r
-       /// </summary>\r
-       public enum CipherMode {\r
-               CBC, // Cipher Block Chaining\r
-               CFB, // Cipher Feedback\r
-               CTS, // Cipher Text Stealing\r
-               ECB, // Electronic Codebook\r
-               OFB  // Output Feedback\r
-       }\r
-}\r
-\r
+//
+// 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>
+       [Serializable]
+       public enum CipherMode {
+               CBC = 0x1, // Cipher Block Chaining
+               ECB, // Electronic Codebook
+               OFB, // Output Feedback
+               CFB, // Cipher Feedback
+               CTS, // Cipher Text Stealing
+       }
+}
+