1998-03-09 22:44:06 +01:00
|
|
|
/* random.h - random functions
|
2001-04-28 20:53:00 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1998-03-09 22:44:06 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1998-03-09 22:44:06 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1998-03-09 22:44:06 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1998-03-09 22:44:06 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
#ifndef G10_RANDOM_H
|
|
|
|
#define G10_RANDOM_H
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
/*-- random.c --*/
|
1999-07-02 11:50:57 +02:00
|
|
|
void random_dump_stats(void);
|
1998-03-09 22:44:06 +01:00
|
|
|
void secure_random_alloc(void);
|
2000-02-11 17:48:22 +01:00
|
|
|
void set_random_seed_file(const char *);
|
|
|
|
void update_random_seed_file(void);
|
1998-03-09 22:44:06 +01:00
|
|
|
int quick_random_gen( int onoff );
|
1999-01-12 11:20:24 +01:00
|
|
|
int random_is_faked(void);
|
1998-03-09 22:44:06 +01:00
|
|
|
void randomize_buffer( byte *buffer, size_t length, int level );
|
1998-03-19 16:27:29 +01:00
|
|
|
byte *get_random_bits( size_t nbits, int level, int secure );
|
1998-11-25 12:52:41 +01:00
|
|
|
void fast_random_poll( void );
|
1998-03-09 22:44:06 +01:00
|
|
|
|
1999-09-15 16:26:39 +02:00
|
|
|
/*-- rndw32.c --*/
|
|
|
|
#ifdef USE_STATIC_RNDW32
|
|
|
|
void rndw32_set_dll_name( const char *name );
|
|
|
|
#endif
|
|
|
|
|
1998-03-09 22:44:06 +01:00
|
|
|
#endif /*G10_RANDOM_H*/
|