2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CspProviderFlags.cs
index 1ef133ec2c9b0d07aa33ce08f9a1524fee907140..f5545879a127745d214a097e7b7df41a053897a6 100755 (executable)
@@ -2,11 +2,8 @@
 // System.Security.Cryptography CspProviderFlags enumeration
 //
 // Authors:
-//   Thomas Neidhart <tome@sbox.tugraz.at>
-//
-// (C) 2004 Novell (http://www.novell.com)
-//
-
+//     Thomas Neidhart <tome@sbox.tugraz.at>
+//     Sebastien Pouliot  <sebastien@ximian.com>
 //
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 //
@@ -37,6 +34,15 @@ namespace System.Security.Cryptography {
        public enum CspProviderFlags {
                UseMachineKeyStore = 1,
                UseDefaultKeyContainer = 2
+#if NET_2_0
+               ,
+               NoFlags = 0,
+               NoPrompt = 64,
+               UseArchivableKey = 16,
+               UseExistingKey = 8,
+               UseNonExportableKey = 4,
+               UseUserProtectedKey = 32
+#endif
        }
 }