new polarssl
[syren.git] / src / libpolarssl / havege.h
blob5998903ec3f4ce4d97645fb64ed0b4d82c53ae00
1 /**
2 * \file havege.h
4 * \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion
6 * Copyright (C) 2006-2013, Brainspark B.V.
8 * This file is part of PolarSSL (http://www.polarssl.org)
9 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
11 * All rights reserved.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #ifndef POLARSSL_HAVEGE_H
28 #define POLARSSL_HAVEGE_H
30 #include <string.h>
32 #define COLLECT_SIZE 1024
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
38 /**
39 * \brief HAVEGE state structure
41 typedef struct
43 int PT1, PT2, offset[2];
44 int pool[COLLECT_SIZE];
45 int WALK[8192];
47 havege_state;
49 /**
50 * \brief HAVEGE initialization
52 * \param hs HAVEGE state to be initialized
54 void havege_init( havege_state *hs );
56 /**
57 * \brief HAVEGE rand function
59 * \param p_rng A HAVEGE state
60 * \param output Buffer to fill
61 * \param len Length of buffer
63 * \return 0
65 int havege_random( void *p_rng, unsigned char *output, size_t len );
67 #ifdef __cplusplus
69 #endif
71 #endif /* havege.h */