2004-12-03 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / X509KeyStorageFlags.cs
index 3d87390a5b5474021dcc2d1bc7a7fac96dcbae30..1c2697a3cb77bcb085042189642bd360a22af59e 100644 (file)
@@ -33,13 +33,14 @@ using System;
 namespace System.Security.Cryptography.X509Certificates {
 
        [Flags]
+       [Serializable]
        public enum X509KeyStorageFlags {
-               DefaultKeySet,
-               UserKeySet,
-               MachineKeySet,
-               Exportable,
-               UserProtected,
-               PersistKeySet 
+               DefaultKeySet = 0,
+               UserKeySet = 1,
+               MachineKeySet = 2,
+               Exportable = 4,
+               UserProtected = 8,
+               PersistKeySet = 16 
        }
 }