1 /* Copyright 2000 Enhanced Software Technologies Inc.
2    All Rights Reserved
3 
4    dorandom.h -- read /dev/urandom.
5 
6 RCS CHANGE LOG:
7 $Log: dorandom.h,v $
8 Revision 1.1.1.1  2001/05/17 17:11:01  elgreen
9 Initial checkin
10 
11 Revision 1.3  2000/04/24 19:46:57  eric
12 More autoconf tweaks. Changed to using Counterpane's TwoFish rather than
13 Dr. Gladman's TwoFish in an attempt to fix the big endian/little endian
14 problems once and for all.
15 
16 Revision 1.1  2000/03/28 23:54:28  eric
17 Initial checkin -- aescrypt/aesget
18 
19 $Date: 2001/05/17 17:11:01 $
20 
21 */
22 
23 #ifndef DO_RANDOM_H
24 #define DO_RANDOM_H 1
25 
26 #define URAND_NAME "/dev/urandom"
27 
28 int urand_seed(char * filename);  /* NULL for /dev/urandom  */
29 BYTE *urand_get(int numbytes);
30 
31 #endif
32