Remove profanity
[mono.git] / mcs / class / System / System.Security.Authentication / CipherAlgorithmType.cs
index b0076b27a454611ccfbd4877da9ac1cfa4e383cb..0af6badd1ee76a5a6d7fe28ec9186e070e4e0cce 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0 
-
 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
        }
 }
 
-#endif