2009-04-02 17:24:44 +02:00
|
|
|
#include <lib.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <minix/profile.h>
|
|
|
|
#include <minix/syslib.h>
|
|
|
|
#include <minix/type.h>
|
2011-06-23 19:25:36 +02:00
|
|
|
#include <minix/minlib.h>
|
2009-04-02 17:24:44 +02:00
|
|
|
#include <minix/sysutil.h>
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* get_randomness *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
void get_randomness(rand, source)
|
2009-04-02 17:24:44 +02:00
|
|
|
struct k_randomness *rand;
|
|
|
|
int source;
|
|
|
|
{
|
|
|
|
/* Use architecture-dependent high-resolution clock for
|
|
|
|
* raw entropy gathering.
|
|
|
|
*/
|
|
|
|
int r_next;
|
|
|
|
unsigned long tsc_high, tsc_low;
|
|
|
|
|
|
|
|
source %= RANDOM_SOURCES;
|
|
|
|
r_next= rand->bin[source].r_next;
|
2011-11-14 11:07:49 +01:00
|
|
|
read_tsc((u32_t *) &tsc_high, (u32_t *) &tsc_low);
|
2009-04-02 17:24:44 +02:00
|
|
|
rand->bin[source].r_buf[r_next] = tsc_low;
|
|
|
|
if (rand->bin[source].r_size < RANDOM_ELEMENTS) {
|
|
|
|
rand->bin[source].r_size ++;
|
|
|
|
}
|
|
|
|
rand->bin[source].r_next = (r_next + 1 ) % RANDOM_ELEMENTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|