Update PointConverter.cs
[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 using System.IO;
33 using System.Runtime.InteropServices;
34
35 using Mono.Security.Cryptography;
36
37 namespace System.Security.Cryptography {
38
39         [ComVisible (true)]
40         public sealed class RSACryptoServiceProvider : RSA, ICspAsymmetricAlgorithm {
41                 private const int PROV_RSA_FULL = 1;    // from WinCrypt.h
42                 private const int AT_KEYEXCHANGE = 1;
43                 private const int AT_SIGNATURE = 2;
44
45                 private KeyPairPersistence store;
46                 private bool persistKey;
47                 private bool persisted;
48         
49                 private bool privateKeyExportable = true; 
50                 private bool m_disposed;
51
52                 private RSAManaged rsa;
53         
54                 public RSACryptoServiceProvider ()
55                         : this (1024)
56                 {
57                         // Here it's not clear if we need to generate a keypair
58                         // (note: MS implementation generates a keypair in this case).
59                         // However we:
60                         // (a) often use this constructor to import an existing keypair.
61                         // (b) take a LOT of time to generate the RSA keypair
62                         // So we'll generate the keypair only when (and if) it's being
63                         // used (or exported). This should save us a lot of time (at 
64                         // least in the unit tests).
65                 }
66         
67                 public RSACryptoServiceProvider (CspParameters parameters) 
68                         : this (1024, parameters)
69                 {
70                         // no keypair generation done at this stage
71                 }
72         
73                 public RSACryptoServiceProvider (int dwKeySize) 
74                 {
75                         // Here it's clear that we need to generate a new keypair
76                         Common (dwKeySize, false);
77                         // no keypair generation done at this stage
78                 }
79         
80                 public RSACryptoServiceProvider (int dwKeySize, CspParameters parameters) 
81                 {
82                         bool has_parameters = parameters != null;
83                         Common (dwKeySize, has_parameters);
84                         if (has_parameters)
85                                 Common (parameters);
86                         // no keypair generation done at this stage
87                 }
88         
89                 void Common (int dwKeySize, bool parameters) 
90                 {
91                         // Microsoft RSA CSP can do between 384 and 16384 bits keypair
92                         LegalKeySizesValue = new KeySizes [1];
93                         LegalKeySizesValue [0] = new KeySizes (384, 16384, 8);
94                         base.KeySize = dwKeySize;
95
96                         rsa = new RSAManaged (KeySize);
97                         rsa.KeyGenerated += new RSAManaged.KeyGeneratedEventHandler (OnKeyGenerated);
98
99                         persistKey = parameters;
100                         if (parameters)
101                                 return;
102
103                         // no need to load - it cannot exists
104                         var p = new CspParameters (PROV_RSA_FULL);
105                         if (useMachineKeyStore)
106                                 p.Flags |= CspProviderFlags.UseMachineKeyStore;
107                         store = new KeyPairPersistence (p);
108                 }
109
110                 void Common (CspParameters p)
111                 {
112                         store = new KeyPairPersistence (p);
113                         bool exists = store.Load ();
114                         bool required = (p.Flags & CspProviderFlags.UseExistingKey) != 0;
115
116                         if (required && !exists)
117                                 throw new CryptographicException ("Keyset does not exist");
118
119                         if (store.KeyValue != null) {
120                                 persisted = true;
121                                 FromXmlString (store.KeyValue);
122                         }
123                 }
124
125                 private static bool useMachineKeyStore;
126
127                 public static bool UseMachineKeyStore {
128                         get { return useMachineKeyStore; }
129                         set { useMachineKeyStore = value; }
130                 }
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 (m_disposed)
172                                 throw new ObjectDisposedException ("rsa");
173                         // choose between OAEP or PKCS#1 v.1.5 padding
174                         AsymmetricKeyExchangeDeformatter def = null;
175                         if (fOAEP)
176                                 def = new RSAOAEPKeyExchangeDeformatter (rsa);
177                         else
178                                 def = new RSAPKCS1KeyExchangeDeformatter (rsa);
179
180                         return def.DecryptKeyExchange (rgb);
181                 }
182         
183                 // NOTE: Unlike MS we need this method
184                 // LAMESPEC: Not available from MS .NET framework but MS don't tell
185                 // why! DON'T USE IT UNLESS YOU KNOW WHAT YOU ARE DOING!!! You should
186                 // only encrypt/decrypt session (secret) key using asymmetric keys. 
187                 // Using this method to decrypt data IS dangerous (and very slow).
188                 public override byte[] DecryptValue (byte[] rgb) 
189                 {
190                         if (!rsa.IsCrtPossible)
191                                 throw new CryptographicException ("Incomplete private key - missing CRT.");
192
193                         return rsa.DecryptValue (rgb);
194                 }
195         
196                 public byte[] Encrypt (byte[] rgb, bool fOAEP) 
197                 {
198                         // choose between OAEP or PKCS#1 v.1.5 padding
199                         AsymmetricKeyExchangeFormatter fmt = null;
200                         if (fOAEP)
201                                 fmt = new RSAOAEPKeyExchangeFormatter (rsa);
202                         else
203                                 fmt = new RSAPKCS1KeyExchangeFormatter (rsa);
204
205                         return fmt.CreateKeyExchange (rgb);
206                 }
207         
208                 // NOTE: Unlike MS we need this method
209                 // LAMESPEC: Not available from MS .NET framework but MS don't tell
210                 // why! DON'T USE IT UNLESS YOU KNOW WHAT YOU ARE DOING!!! You should
211                 // only encrypt/decrypt session (secret) key using asymmetric keys. 
212                 // Using this method to encrypt data IS dangerous (and very slow).
213                 public override byte[] EncryptValue (byte[] rgb) 
214                 {
215                         return rsa.EncryptValue (rgb);
216                 }
217         
218                 public override RSAParameters ExportParameters (bool includePrivateParameters) 
219                 {
220                         if ((includePrivateParameters) && (!privateKeyExportable))
221                                 throw new CryptographicException ("cannot export private key");
222
223                         return rsa.ExportParameters (includePrivateParameters);
224                 }
225         
226                 public override void ImportParameters (RSAParameters parameters) 
227                 {
228                         rsa.ImportParameters (parameters);
229                 }
230         
231                 private HashAlgorithm GetHash (object halg) 
232                 {
233                         if (halg == null)
234                                 throw new ArgumentNullException ("halg");
235
236                         HashAlgorithm hash = null;
237                         if (halg is String)
238                                 hash = HashAlgorithm.Create ((String)halg);
239                         else if (halg is HashAlgorithm)
240                                 hash = (HashAlgorithm) halg;
241                         else if (halg is Type)
242                                 hash = (HashAlgorithm) Activator.CreateInstance ((Type)halg);
243                         else
244                                 throw new ArgumentException ("halg");
245
246                         return hash;
247                 }
248         
249                 // NOTE: this method can work with ANY configured (OID in machine.config) 
250                 // HashAlgorithm descendant
251                 public byte[] SignData (byte[] buffer, object halg) 
252                 {
253                         if (buffer == null)
254                                 throw new ArgumentNullException ("buffer");
255                         return SignData (buffer, 0, buffer.Length, halg);
256                 }
257         
258                 // NOTE: this method can work with ANY configured (OID in machine.config) 
259                 // HashAlgorithm descendant
260                 public byte[] SignData (Stream inputStream, object halg) 
261                 {
262                         HashAlgorithm hash = GetHash (halg);
263                         byte[] toBeSigned = hash.ComputeHash (inputStream);
264                         return PKCS1.Sign_v15 (this, hash, toBeSigned);
265                 }
266         
267                 // NOTE: this method can work with ANY configured (OID in machine.config) 
268                 // HashAlgorithm descendant
269                 public byte[] SignData (byte[] buffer, int offset, int count, object halg) 
270                 {
271                         HashAlgorithm hash = GetHash (halg);
272                         byte[] toBeSigned = hash.ComputeHash (buffer, offset, count);
273                         return PKCS1.Sign_v15 (this, hash, toBeSigned);
274                 }
275         
276                 private string GetHashNameFromOID (string oid) 
277                 {
278                         switch (oid) {
279                         case "1.3.14.3.2.26":
280                                 return "SHA1";
281                         case "1.2.840.113549.2.5":
282                                 return "MD5";
283                         case "2.16.840.1.101.3.4.2.1":
284                                 return "SHA256";
285                         case "2.16.840.1.101.3.4.2.2":
286                                 return "SHA384";
287                         case "2.16.840.1.101.3.4.2.3":
288                                 return "SHA512";
289                         default:
290                                 throw new CryptographicException (oid + " is an unsupported hash algorithm for RSA signing");
291                         }
292                 }
293
294                 public byte[] SignHash (byte[] rgbHash, string str) 
295                 {
296                         if (rgbHash == null)
297                                 throw new ArgumentNullException ("rgbHash");
298                         // Fx 2.0 defaults to the SHA-1
299                         string hashName = (str == null) ? "SHA1" : GetHashNameFromOID (str);
300                         HashAlgorithm hash = HashAlgorithm.Create (hashName);
301                         return PKCS1.Sign_v15 (this, hash, rgbHash);
302                 }
303
304                 // NOTE: this method can work with ANY configured (OID in machine.config) 
305                 // HashAlgorithm descendant
306                 public bool VerifyData (byte[] buffer, object halg, byte[] signature) 
307                 {
308                         if (buffer == null)
309                                 throw new ArgumentNullException ("buffer");
310                         if (signature == null)
311                                 throw new ArgumentNullException ("signature");
312
313                         HashAlgorithm hash = GetHash (halg);
314                         byte[] toBeVerified = hash.ComputeHash (buffer);
315                         return PKCS1.Verify_v15 (this, hash, toBeVerified, signature);
316                 }
317         
318                 public bool VerifyHash (byte[] rgbHash, string str, byte[] rgbSignature) 
319                 {
320                         if (rgbHash == null) 
321                                 throw new ArgumentNullException ("rgbHash");
322                         if (rgbSignature == null)
323                                 throw new ArgumentNullException ("rgbSignature");
324                         // Fx 2.0 defaults to the SHA-1
325                         string hashName = (str == null) ? "SHA1" : GetHashNameFromOID (str);
326                         HashAlgorithm hash = HashAlgorithm.Create (hashName);
327                         return PKCS1.Verify_v15 (this, hash, rgbHash, rgbSignature);
328                 }
329         
330                 protected override void Dispose (bool disposing) 
331                 {
332                         if (!m_disposed) {
333                                 // the key is persisted and we do not want it persisted
334                                 if ((persisted) && (!persistKey)) {
335                                         store.Remove ();        // delete the container
336                                 }
337                                 if (rsa != null)
338                                         rsa.Clear ();
339                                 // call base class 
340                                 // no need as they all are abstract before us
341                                 m_disposed = true;
342                         }
343                 }
344
345                 // private stuff
346
347                 private void OnKeyGenerated (object sender, EventArgs e) 
348                 {
349                         // the key isn't persisted and we want it persisted
350                         if ((persistKey) && (!persisted)) {
351                                 // save the current keypair
352                                 store.KeyValue = this.ToXmlString (!rsa.PublicOnly);
353                                 store.Save ();
354                                 persisted = true;
355                         }
356                 }
357                 // ICspAsymmetricAlgorithm
358
359                 [ComVisible (false)]
360                 public CspKeyContainerInfo CspKeyContainerInfo {
361                         get {
362                                 return new CspKeyContainerInfo(store.Parameters);
363                         }
364                 }
365
366                 [ComVisible (false)]
367                 public byte[] ExportCspBlob (bool includePrivateParameters)
368                 {
369                         byte[] blob = null;
370                         if (includePrivateParameters)
371                                 blob = CryptoConvert.ToCapiPrivateKeyBlob (this);
372                         else
373                                 blob = CryptoConvert.ToCapiPublicKeyBlob (this);
374
375                         // ALGID (bytes 4-7) - default is KEYX
376                         // 00 24 00 00 (for CALG_RSA_SIGN)
377                         // 00 A4 00 00 (for CALG_RSA_KEYX)
378                         blob [5] = (byte) (((store != null) && (store.Parameters.KeyNumber == AT_SIGNATURE)) ? 0x24 : 0xA4);
379                         return blob;
380                 }
381
382                 [ComVisible (false)]
383                 public void ImportCspBlob (byte[] keyBlob)
384                 {
385                         if (keyBlob == null)
386                                 throw new ArgumentNullException ("keyBlob");
387
388                         RSA rsa = CryptoConvert.FromCapiKeyBlob (keyBlob);
389                         if (rsa is RSACryptoServiceProvider) {
390                                 // default (if no change are present in machine.config)
391                                 RSAParameters rsap = rsa.ExportParameters (!(rsa as RSACryptoServiceProvider).PublicOnly);
392                                 ImportParameters (rsap);
393                         } else {
394                                 // we can't know from RSA if the private key is available
395                                 try {
396                                         // so we try it...
397                                         RSAParameters rsap = rsa.ExportParameters (true);
398                                         ImportParameters (rsap);
399                                 }
400                                 catch {
401                                         // and fall back
402                                         RSAParameters rsap = rsa.ExportParameters (false);
403                                         ImportParameters (rsap);
404                                 }
405                         }
406
407                         var p = new CspParameters (PROV_RSA_FULL);
408                         p.KeyNumber = keyBlob [5] == 0x24 ? AT_SIGNATURE : AT_KEYEXCHANGE;
409                         if (useMachineKeyStore)
410                                 p.Flags |= CspProviderFlags.UseMachineKeyStore;
411                         store = new KeyPairPersistence (p);
412                 }
413         }
414 }