[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / MachineKeyValidation.cs
index eb7dfe13182604e8087b2518958f239479e676cc..47d7ef1be88a2344fbc2dd4eeb1d093450fd6bde 100644 (file)
 
 namespace System.Web.Configuration
 {
-#if NET_2_0
        public
-#else
-       internal
-#endif
        enum MachineKeyValidation
        {
                MD5 = 0,
                SHA1 = 1,
                TripleDES = 2,
                AES = 3,
-#if NET_4_0
                HMACSHA256 = 4,
                HMACSHA384 = 5,
                HMACSHA512 = 6,
                Custom = 7
-#endif
        }
 }