3005d96d9d5429e6e312341f57777b46ff87e974
[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  *
7  * (C) 2001 Ximian, Inc.
8  *
9  */
10
11 #ifndef _MONO_METADATA_RAND_H_
12 #define _MONO_METADATA_RAND_H_
13
14 #include <mono/metadata/object.h>
15
16 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes(MonoArray *arry);
17 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes(MonoArray *arry);
18
19 #endif