* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CspProviderFlags.cs
index e4559b5abf55b04b71ab9e44a5c666056cfba36c..f5545879a127745d214a097e7b7df41a053897a6 100755 (executable)
@@ -2,9 +2,29 @@
 // System.Security.Cryptography CspProviderFlags enumeration
 //
 // Authors:
-//   Thomas Neidhart <tome@sbox.tugraz.at>
+//     Thomas Neidhart <tome@sbox.tugraz.at>
+//     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// (C) 2004 Novell (http://www.novell.com)
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
 namespace System.Security.Cryptography {
@@ -13,7 +33,16 @@ namespace System.Security.Cryptography {
        [Serializable]
        public enum CspProviderFlags {
                UseMachineKeyStore = 1,
-               UseDefaultKeyContainer,
+               UseDefaultKeyContainer = 2
+#if NET_2_0
+               ,
+               NoFlags = 0,
+               NoPrompt = 64,
+               UseArchivableKey = 16,
+               UseExistingKey = 8,
+               UseNonExportableKey = 4,
+               UseUserProtectedKey = 32
+#endif
        }
 }