This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mono / metadata / rand.h
1 /*
2  * rand.h: System.Security.Cryptography.RNGCryptoServiceProvider support
3  *
4  * Author:
5  *      Mark Crichton (crichton@gimp.org)
6  *      Sebastien Pouliot (sebastien@ximian.com)
7  *
8  * (C) 2001 Ximian, Inc.
9  * (C) 2004 Novell (http://www.novell.com)
10  *
11  */
12
13 #ifndef _MONO_METADATA_RAND_H_
14 #define _MONO_METADATA_RAND_H_
15
16 #include <mono/metadata/object.h>
17
18 gpointer ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize (MonoArray *seed);
19 gpointer ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes (gpointer handle, MonoArray *arry);
20 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngClose (gpointer handle);
21
22 #endif