New test.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CspKeyContainerInfo.cs
1 //
2 // CspKeyContainerInfo.cs: Information about CSP based key containers
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using System.Runtime.InteropServices;
33 using System.Security.AccessControl;
34
35 namespace System.Security.Cryptography {
36
37         [ComVisible (true)]
38         public sealed class CspKeyContainerInfo {
39
40                 private CspParameters _params;
41                 internal bool _random;
42
43                 // constructors
44
45                 public CspKeyContainerInfo (CspParameters parameters) 
46                 {
47                         _params = parameters;
48                         _random = true; // by default we always generate a key
49                 }
50
51                 // properties
52
53                 // always true for Mono
54                 public bool Accessible {
55                         get { return true; }
56                 }
57
58                 // always null for Mono
59                 public CryptoKeySecurity CryptoKeySecurity {
60                         get { return null; }
61                 }
62
63                 // always true for Mono
64                 public bool Exportable {
65                         get { return true; }
66                 }
67                 
68                 // always false for Mono
69                 public bool HardwareDevice {
70                         get { return false; }
71                 }
72                 
73                 public string KeyContainerName { 
74                         get { return _params.KeyContainerName; }
75                 }
76                 
77                 public KeyNumber KeyNumber { 
78                         get { return (KeyNumber)_params.KeyNumber; }
79                 }
80                 
81                 // always false for Mono
82                 public bool MachineKeyStore {
83                         get { return false; }
84                 }
85                 
86                 // always false for Mono
87                 public bool Protected {
88                         get { return false; }
89                 }
90                 
91                 public string ProviderName {
92                         get { return _params.ProviderName; }
93                 }
94                 
95                 public int ProviderType { 
96                         get { return _params.ProviderType; }
97                 }
98                 
99                 // true if generated, false if imported
100                 public bool RandomlyGenerated {
101                         get { return _random; }
102                 }
103                 
104                 // always false for Mono
105                 public bool Removable {
106                         get { return false; }
107                 }
108                 
109                 public string UniqueKeyContainerName {
110                         get { return _params.ProviderName + "\\" + _params.KeyContainerName; }
111                 }
112         }
113 }
114
115 #endif