summaryrefslogtreecommitdiffabout
path: root/pwmanager/libcrypt/cipher/random.h
Unidiff
Diffstat (limited to 'pwmanager/libcrypt/cipher/random.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/libcrypt/cipher/random.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/pwmanager/libcrypt/cipher/random.h b/pwmanager/libcrypt/cipher/random.h
new file mode 100644
index 0000000..5d0f8bf
--- a/dev/null
+++ b/pwmanager/libcrypt/cipher/random.h
@@ -0,0 +1,42 @@
1/* random.h - random functions
2 *Copyright (C) 1998, 2002 Free Software Foundation, Inc.
3 *
4 * This file is part of Libgcrypt.
5 *
6 * Libgcrypt is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
10 *
11 * Libgcrypt is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 */
20#ifndef G10_RANDOM_H
21#define G10_RANDOM_H
22
23#include "types.h"
24
25void _gcry_random_initialize (void);
26void _gcry_register_random_progress (void (*cb)(void *,const char*,int,int,int),
27 void *cb_data );
28void _gcry_random_dump_stats(void);
29void _gcry_secure_random_alloc(void);
30int _gcry_quick_random_gen( int onoff );
31int _gcry_random_is_faked(void);
32void _gcry_set_random_seed_file (const char *name);
33void _gcry_update_random_seed_file (void);
34
35byte *_gcry_get_random_bits( size_t nbits, int level, int secure );
36void _gcry_fast_random_poll( void );
37
38#endif /*G10_RANDOM_H*/
39
40
41
42