New tests.
[mono.git] / mcs / class / corlib / System.Security.Cryptography / RNGCryptoServiceProvider.cs
1 //
2 // System.Security.Cryptography.RNGCryptoServiceProvider
3 //
4 // Authors:
5 //      Mark Crichton (crichton@gimp.org)
6 //      Sebastien Pouliot (sebastien@ximian.com)
7 //
8 // (C) 2002
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 // "In the beginning there was Chaos,
32 // and within this Chaos was Power,
33 // Great Power without form."
34 // -- The Verrah Rubicon of Verena, Book One
35
36 using System.Globalization;
37 using System.Runtime.CompilerServices;
38 using System.Runtime.InteropServices;
39 using System.Text;
40
41 namespace System.Security.Cryptography {
42         
43         [ComVisible (true)]
44         public sealed class RNGCryptoServiceProvider : RandomNumberGenerator {
45                 private static object _lock;
46                 private IntPtr _handle;
47
48                 static RNGCryptoServiceProvider ()
49                 {
50                         if (RngOpen ())
51                                 _lock = new object ();
52                 }
53
54                 public RNGCryptoServiceProvider ()
55                 {
56                         _handle = RngInitialize (null);
57                         Check ();
58                 }
59 #if !NET_2_1
60                 public RNGCryptoServiceProvider (byte[] rgb)
61                 {
62                         _handle = RngInitialize (rgb);
63                         Check ();
64                 }
65                 
66                 public RNGCryptoServiceProvider (CspParameters cspParams)
67                 {
68                         // CSP selection isn't supported but we still return 
69                         // random data (no exception) for compatibility
70                         _handle = RngInitialize (null);
71                         Check ();
72                 }
73                 
74                 public RNGCryptoServiceProvider (string str) 
75                 {
76                         if (str == null)
77                                 _handle = RngInitialize (null);
78                         else
79                                 _handle = RngInitialize (Encoding.UTF8.GetBytes (str));
80                         Check ();
81                 }
82 #endif
83                 private void Check () 
84                 {
85                         if (_handle == IntPtr.Zero) {
86                                 throw new CryptographicException (
87                                         Locale.GetText ("Couldn't access random source."));
88                         }
89                 }
90
91                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
92                 private static extern bool RngOpen ();
93                 
94                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
95                 private static extern IntPtr RngInitialize (byte[] seed);
96
97                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
98                 private static extern IntPtr RngGetBytes (IntPtr handle, byte[] data);
99
100                 [MethodImplAttribute(MethodImplOptions.InternalCall)]
101                 private static extern void RngClose (IntPtr handle);
102                 
103                 public override void GetBytes (byte[] data) 
104                 {
105                         if (data == null)
106                                 throw new ArgumentNullException ("data");
107
108                         if (_lock == null) {
109                                 _handle = RngGetBytes (_handle, data);
110                         } else {
111                                 // using a global handle for randomness
112                                 lock (_lock) {
113                                         _handle = RngGetBytes (_handle, data);
114                                 }
115                         }
116                         Check ();
117                 }
118                 
119                 public override void GetNonZeroBytes (byte[] data) 
120                 {
121                         if (data == null)
122                                 throw new ArgumentNullException ("data");
123
124                         byte[] random = new byte [data.Length * 2];
125                         int i = 0;
126                         // one pass should be enough but hey this is random ;-)
127                         while (i < data.Length) {
128                                 _handle = RngGetBytes (_handle, random);
129                                 Check ();
130                                 for (int j=0; j < random.Length; j++) {
131                                         if (i == data.Length)
132                                                 break;
133                                         if (random [j] != 0)
134                                                 data [i++] = random [j];
135                                 }
136                         }
137                 }
138                 
139                 ~RNGCryptoServiceProvider () 
140                 {
141                         if (_handle != IntPtr.Zero) {
142                                 RngClose (_handle);
143                                 _handle = IntPtr.Zero;
144                         }
145                 }
146         }
147 }