Create a store when importing from a CspBlob so we can export it with the same KeyNum...
[mono.git] / mcs / class / corlib / System.Security.Cryptography / RSACryptoServiceProvider.cs
1 //
2 // RSACryptoServiceProvider.cs: Handles an RSA implementation.
3 //
4 // Authors:
5 //      Sebastien Pouliot <sebastien@ximian.com>
6 //      Ben Maurer (bmaurer@users.sf.net)
7 //
8 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
9 // Portions (C) 2003 Ben Maurer
10 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 #if !MOONLIGHT
33
34 using System.IO;
35 using System.Runtime.InteropServices;
36
37 using Mono.Security.Cryptography;
38
39 namespace System.Security.Cryptography {
40
41         [ComVisible (true)]
42         public sealed class RSACryptoServiceProvider : RSA, ICspAsymmetricAlgorithm {
43                 private const int PROV_RSA_FULL = 1;    // from WinCrypt.h
44                 private const int AT_KEYEXCHANGE = 1;
45                 private const int AT_SIGNATURE = 2;
46
47                 private KeyPairPersistence store;
48                 private bool persistKey;
49                 private bool persisted;
50         
51                 private bool privateKeyExportable = true; 
52                 private bool m_disposed;
53
54                 private RSAManaged rsa;
55         
56                 public RSACryptoServiceProvider ()
57                 {
58                         // Here it's not clear if we need to generate a keypair
59                         // (note: MS implementation generates a keypair in this case).
60                         // However we:
61                         // (a) often use this constructor to import an existing keypair.
62                         // (b) take a LOT of time to generate the RSA keypair
63                         // So we'll generate the keypair only when (and if) it's being
64                         // used (or exported). This should save us a lot of time (at 
65                         // least in the unit tests).
66                         Common (1024, null);
67                 }
68         
69                 public RSACryptoServiceProvider (CspParameters parameters) 
70                 {
71                         Common (1024, parameters);
72                         // no keypair generation done at this stage
73                 }
74         
75                 public RSACryptoServiceProvider (int dwKeySize) 
76                 {
77                         // Here it's clear that we need to generate a new keypair
78                         Common (dwKeySize, null);
79                         // no keypair generation done at this stage
80                 }
81         
82                 public RSACryptoServiceProvider (int dwKeySize, CspParameters parameters) 
83                 {
84                         Common (dwKeySize, parameters);
85                         // no keypair generation done at this stage
86                 }
87         
88                 private void Common (int dwKeySize, CspParameters p) 
89                 {
90                         // Microsoft RSA CSP can do between 384 and 16384 bits keypair
91                         LegalKeySizesValue = new KeySizes [1];
92                         LegalKeySizesValue [0] = new KeySizes (384, 16384, 8);
93                         base.KeySize = dwKeySize;
94
95                         rsa = new RSAManaged (KeySize);
96                         rsa.KeyGenerated += new RSAManaged.KeyGeneratedEventHandler (OnKeyGenerated);
97
98                         persistKey = (p != null);
99                         if (p == null) {
100                                 p = new CspParameters (PROV_RSA_FULL);
101 #if NET_1_1
102                                 if (useMachineKeyStore)
103                                         p.Flags |= CspProviderFlags.UseMachineKeyStore;
104 #endif
105                                 store = new KeyPairPersistence (p);
106                                 // no need to load - it cannot exists
107                         }
108                         else {
109                                 store = new KeyPairPersistence (p);
110                                 bool exists = store.Load ();
111                                 bool required = (p.Flags & CspProviderFlags.UseExistingKey) != 0;
112
113                                 if (required && !exists)
114                                         throw new CryptographicException ("Keyset does not exist");
115
116                                 if (store.KeyValue != null) {
117                                         persisted = true;
118                                         this.FromXmlString (store.KeyValue);
119                                 }
120                         }
121                 }
122
123 #if NET_1_1
124                 private static bool useMachineKeyStore = false;
125
126                 public static bool UseMachineKeyStore {
127                         get { return useMachineKeyStore; }
128                         set { useMachineKeyStore = value; }
129                 }
130 #endif
131         
132                 ~RSACryptoServiceProvider () 
133                 {
134                         // Zeroize private key
135                         Dispose (false);
136                 }
137         
138                 public override string KeyExchangeAlgorithm {
139                         get { return "RSA-PKCS1-KeyEx"; }
140                 }
141         
142                 public override int KeySize {
143                         get { 
144                                 if (rsa == null)
145                                       return KeySizeValue; 
146                                 else
147                                       return rsa.KeySize;
148                         }
149                 }
150
151                 public bool PersistKeyInCsp {
152                         get { return persistKey; }
153                         set {
154                                 persistKey = value;
155                                 if (persistKey)
156                                         OnKeyGenerated (rsa, null);
157                         }
158                 }
159
160                 [ComVisible (false)]
161                 public bool PublicOnly {
162                         get { return rsa.PublicOnly; }
163                 }
164         
165                 public override string SignatureAlgorithm {
166                         get { return "http://www.w3.org/2000/09/xmldsig#rsa-sha1"; }
167                 }
168         
169                 public byte[] Decrypt (byte[] rgb, bool fOAEP) 
170                 {
171 #if NET_1_1
172                         if (m_disposed)
173                                 throw new ObjectDisposedException ("rsa");
174 #endif
175                         // choose between OAEP or PKCS#1 v.1.5 padding
176                         AsymmetricKeyExchangeDeformatter def = null;
177                         if (fOAEP)
178                                 def = new RSAOAEPKeyExchangeDeformatter (rsa);
179                         else
180                                 def = new RSAPKCS1KeyExchangeDeformatter (rsa);
181
182                         return def.DecryptKeyExchange (rgb);
183                 }
184         
185                 // NOTE: Unlike MS we need this method
186                 // LAMESPEC: Not available from MS .NET framework but MS don't tell
187                 // why! DON'T USE IT UNLESS YOU KNOW WHAT YOU ARE DOING!!! You should
188                 // only encrypt/decrypt session (secret) key using asymmetric keys. 
189                 // Using this method to decrypt data IS dangerous (and very slow).
190                 public override byte[] DecryptValue (byte[] rgb) 
191                 {
192                         if (!rsa.IsCrtPossible)
193                                 throw new CryptographicException ("Incomplete private key - missing CRT.");
194
195                         return rsa.DecryptValue (rgb);
196                 }
197         
198                 public byte[] Encrypt (byte[] rgb, bool fOAEP) 
199                 {
200                         // choose between OAEP or PKCS#1 v.1.5 padding
201                         AsymmetricKeyExchangeFormatter fmt = null;
202                         if (fOAEP)
203                                 fmt = new RSAOAEPKeyExchangeFormatter (rsa);
204                         else
205                                 fmt = new RSAPKCS1KeyExchangeFormatter (rsa);
206
207                         return fmt.CreateKeyExchange (rgb);
208                 }
209         
210                 // NOTE: Unlike MS we need this method
211                 // LAMESPEC: Not available from MS .NET framework but MS don't tell
212                 // why! DON'T USE IT UNLESS YOU KNOW WHAT YOU ARE DOING!!! You should
213                 // only encrypt/decrypt session (secret) key using asymmetric keys. 
214                 // Using this method to encrypt data IS dangerous (and very slow).
215                 public override byte[] EncryptValue (byte[] rgb) 
216                 {
217                         return rsa.EncryptValue (rgb);
218                 }
219         
220                 public override RSAParameters ExportParameters (bool includePrivateParameters) 
221                 {
222                         if ((includePrivateParameters) && (!privateKeyExportable))
223                                 throw new CryptographicException ("cannot export private key");
224
225                         return rsa.ExportParameters (includePrivateParameters);
226                 }
227         
228                 public override void ImportParameters (RSAParameters parameters) 
229                 {
230                         rsa.ImportParameters (parameters);
231                 }
232         
233                 private HashAlgorithm GetHash (object halg) 
234                 {
235                         if (halg == null)
236                                 throw new ArgumentNullException ("halg");
237
238                         HashAlgorithm hash = null;
239                         if (halg is String)
240                                 hash = HashAlgorithm.Create ((String)halg);
241                         else if (halg is HashAlgorithm)
242                                 hash = (HashAlgorithm) halg;
243                         else if (halg is Type)
244                                 hash = (HashAlgorithm) Activator.CreateInstance ((Type)halg);
245                         else
246                                 throw new ArgumentException ("halg");
247
248                         return hash;
249                 }
250         
251                 // NOTE: this method can work with ANY configured (OID in machine.config) 
252                 // HashAlgorithm descendant
253                 public byte[] SignData (byte[] buffer, object halg) 
254                 {
255 #if NET_1_1
256                         if (buffer == null)
257                                 throw new ArgumentNullException ("buffer");
258 #endif
259                         return SignData (buffer, 0, buffer.Length, halg);
260                 }
261         
262                 // NOTE: this method can work with ANY configured (OID in machine.config) 
263                 // HashAlgorithm descendant
264                 public byte[] SignData (Stream inputStream, object halg) 
265                 {
266                         HashAlgorithm hash = GetHash (halg);
267                         byte[] toBeSigned = hash.ComputeHash (inputStream);
268                         return PKCS1.Sign_v15 (this, hash, toBeSigned);
269                 }
270         
271                 // NOTE: this method can work with ANY configured (OID in machine.config) 
272                 // HashAlgorithm descendant
273                 public byte[] SignData (byte[] buffer, int offset, int count, object halg) 
274                 {
275                         HashAlgorithm hash = GetHash (halg);
276                         byte[] toBeSigned = hash.ComputeHash (buffer, offset, count);
277                         return PKCS1.Sign_v15 (this, hash, toBeSigned);
278                 }
279         
280                 private string GetHashNameFromOID (string oid) 
281                 {
282                         switch (oid) {
283                         case "1.3.14.3.2.26":
284                                 return "SHA1";
285                         case "1.2.840.113549.2.5":
286                                 return "MD5";
287                         case "2.16.840.1.101.3.4.2.1":
288                                 return "SHA256";
289                         case "2.16.840.1.101.3.4.2.2":
290                                 return "SHA384";
291                         case "2.16.840.1.101.3.4.2.3":
292                                 return "SHA512";
293                         default:
294                                 throw new CryptographicException (oid + " is an unsupported hash algorithm for RSA signing");
295                         }
296                 }
297
298                 public byte[] SignHash (byte[] rgbHash, string str) 
299                 {
300                         if (rgbHash == null)
301                                 throw new ArgumentNullException ("rgbHash");
302                         // Fx 2.0 defaults to the SHA-1
303                         string hashName = (str == null) ? "SHA1" : GetHashNameFromOID (str);
304                         HashAlgorithm hash = HashAlgorithm.Create (hashName);
305                         return PKCS1.Sign_v15 (this, hash, rgbHash);
306                 }
307
308                 // NOTE: this method can work with ANY configured (OID in machine.config) 
309                 // HashAlgorithm descendant
310                 public bool VerifyData (byte[] buffer, object halg, byte[] signature) 
311                 {
312                         if (buffer == null)
313                                 throw new ArgumentNullException ("buffer");
314                         if (signature == null)
315                                 throw new ArgumentNullException ("signature");
316
317                         HashAlgorithm hash = GetHash (halg);
318                         byte[] toBeVerified = hash.ComputeHash (buffer);
319                         return PKCS1.Verify_v15 (this, hash, toBeVerified, signature);
320                 }
321         
322                 public bool VerifyHash (byte[] rgbHash, string str, byte[] rgbSignature) 
323                 {
324                         if (rgbHash == null) 
325                                 throw new ArgumentNullException ("rgbHash");
326                         if (rgbSignature == null)
327                                 throw new ArgumentNullException ("rgbSignature");
328                         // Fx 2.0 defaults to the SHA-1
329                         string hashName = (str == null) ? "SHA1" : GetHashNameFromOID (str);
330                         HashAlgorithm hash = HashAlgorithm.Create (hashName);
331                         return PKCS1.Verify_v15 (this, hash, rgbHash, rgbSignature);
332                 }
333         
334                 protected override void Dispose (bool disposing) 
335                 {
336                         if (!m_disposed) {
337                                 // the key is persisted and we do not want it persisted
338                                 if ((persisted) && (!persistKey)) {
339                                         store.Remove ();        // delete the container
340                                 }
341                                 if (rsa != null)
342                                         rsa.Clear ();
343                                 // call base class 
344                                 // no need as they all are abstract before us
345                                 m_disposed = true;
346                         }
347                 }
348
349                 // private stuff
350
351                 private void OnKeyGenerated (object sender, EventArgs e) 
352                 {
353                         // the key isn't persisted and we want it persisted
354                         if ((persistKey) && (!persisted)) {
355                                 // save the current keypair
356                                 store.KeyValue = this.ToXmlString (!rsa.PublicOnly);
357                                 store.Save ();
358                                 persisted = true;
359                         }
360                 }
361                 // ICspAsymmetricAlgorithm
362
363                 [ComVisible (false)]
364                 public CspKeyContainerInfo CspKeyContainerInfo {
365                         get {
366                                 return new CspKeyContainerInfo(store.Parameters);
367                         }
368                 }
369
370                 [ComVisible (false)]
371                 public byte[] ExportCspBlob (bool includePrivateParameters)
372                 {
373                         byte[] blob = null;
374                         if (includePrivateParameters)
375                                 blob = CryptoConvert.ToCapiPrivateKeyBlob (this);
376                         else
377                                 blob = CryptoConvert.ToCapiPublicKeyBlob (this);
378
379                         // ALGID (bytes 4-7) - default is KEYX
380                         // 00 24 00 00 (for CALG_RSA_SIGN)
381                         // 00 A4 00 00 (for CALG_RSA_KEYX)
382                         blob [5] = (byte) (((store != null) && (store.Parameters.KeyNumber == AT_SIGNATURE)) ? 0x24 : 0xA4);
383                         return blob;
384                 }
385
386                 [ComVisible (false)]
387                 public void ImportCspBlob (byte[] keyBlob)
388                 {
389                         if (keyBlob == null)
390                                 throw new ArgumentNullException ("keyBlob");
391
392                         RSA rsa = CryptoConvert.FromCapiKeyBlob (keyBlob);
393                         if (rsa is RSACryptoServiceProvider) {
394                                 // default (if no change are present in machine.config)
395                                 RSAParameters rsap = rsa.ExportParameters (!(rsa as RSACryptoServiceProvider).PublicOnly);
396                                 ImportParameters (rsap);
397                         } else {
398                                 // we can't know from RSA if the private key is available
399                                 try {
400                                         // so we try it...
401                                         RSAParameters rsap = rsa.ExportParameters (true);
402                                         ImportParameters (rsap);
403                                 }
404                                 catch {
405                                         // and fall back
406                                         RSAParameters rsap = rsa.ExportParameters (false);
407                                         ImportParameters (rsap);
408                                 }
409                         }
410
411                         var p = new CspParameters (PROV_RSA_FULL);
412                         p.KeyNumber = keyBlob [5] == 0x24 ? AT_SIGNATURE : AT_KEYEXCHANGE;
413 #if NET_1_1
414                         if (useMachineKeyStore)
415                                 p.Flags |= CspProviderFlags.UseMachineKeyStore;
416 #endif
417                         store = new KeyPairPersistence (p);
418                 }
419         }
420 }
421
422 #endif
423