Wrong file to install
[mono.git] / mcs / class / System / System.Security.Authentication / CipherAlgorithmType.cs
index b0076b27a454611ccfbd4877da9ac1cfa4e383cb..6343cca1bbaa991a56151d77e7bc471b1d15a651 100644 (file)
@@ -35,15 +35,16 @@ namespace System.Security.Authentication
 {
        public enum CipherAlgorithmType 
        {
-               Aes,
-               Aes128,
-               Aes192,
-               Aes256,
-               Des,
-               None,
-               Rc2,
-               Rc4,
-               TripleDes
+               None       = 0,
+               Null       = 0x6000,
+               Aes        = 0x6611,
+               Aes128     = 0x660e,
+               Aes192     = 0x660f,
+               Aes256     = 0x6610,
+               Des        = 0x6601,
+               Rc2        = 0x6602,
+               Rc4        = 0x6801,
+               TripleDes  = 0x6603
        }
 }