~ubuntu-branches/ubuntu/natty/libgcrypt11/natty-proposed

« back to all changes in this revision

Viewing changes to cipher/random.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-05-16 20:13:32 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090516201332-382lmffc3put5wtm
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* random.h - random functions
2
 
 *      Copyright (C) 1998, 2002, 2006 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
 
 
25
 
void _gcry_random_initialize (int full);
26
 
void _gcry_register_random_progress (void (*cb)(void *,const char*,int,int,int),
27
 
                                     void *cb_data );
28
 
void _gcry_random_dump_stats(void);
29
 
void _gcry_secure_random_alloc(void);
30
 
void _gcry_enable_quick_random_gen (void);
31
 
int  _gcry_random_is_faked(void);
32
 
void _gcry_set_random_daemon_socket (const char *socketname);
33
 
int  _gcry_use_random_daemon (int onoff);
34
 
void _gcry_set_random_seed_file (const char *name);
35
 
void _gcry_update_random_seed_file (void);
36
 
 
37
 
byte *_gcry_get_random_bits( size_t nbits, int level, int secure );
38
 
void _gcry_fast_random_poll( void );
39
 
 
40
 
/*-- rndegd.c --*/
41
 
gpg_error_t _gcry_rndegd_set_socket_name (const char *name);
42
 
 
43
 
/*-- random-daemon.c (only used from random.c) --*/
44
 
#ifdef USE_RANDOM_DAEMON
45
 
void _gcry_daemon_initialize_basics (void);
46
 
int _gcry_daemon_randomize (const char *socketname,
47
 
                            void *buffer, size_t length,
48
 
                            enum gcry_random_level level);
49
 
int _gcry_daemon_create_nonce (const char *socketname,
50
 
                               void *buffer, size_t length);
51
 
#endif /*USE_RANDOM_DAEMON*/
52
 
 
53
 
#endif /*G10_RANDOM_H*/
54
 
 
55
 
 
56
 
 
57