Merge pull request #1659 from alexanderkyte/stringbuilder-referencesource
[mono.git] / mono / metadata / rand.c
1 /*
2  * rand.c: System.Security.Cryptography.RNGCryptoServiceProvider support
3  *
4  * Authors:
5  *      Mark Crichton (crichton@gimp.org)
6  *      Patrik Torstensson (p@rxc.se)
7  *      Sebastien Pouliot (sebastien@ximian.com)
8  *
9  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  */
12
13 #include <glib.h>
14
15 #include "object.h"
16 #include "rand.h"
17 #include "utils/mono-rand.h"
18
19 MonoBoolean
20 ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngOpen (void)
21 {
22         return (MonoBoolean) mono_rand_open ();
23 }
24
25 gpointer
26 ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize (MonoArray *seed)
27 {
28         
29         return mono_rand_init (seed ? mono_array_addr (seed, guchar, 0) : NULL, seed ? mono_array_length (seed) : 0);
30 }
31
32 gpointer
33 ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes (gpointer handle, MonoArray *arry)
34 {
35         g_assert (arry);
36         mono_rand_try_get_bytes (&handle, mono_array_addr (arry, guchar, 0), mono_array_length (arry));
37         return handle;
38 }
39
40 void
41 ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngClose (gpointer handle)
42 {
43         mono_rand_close (handle);
44 }