2013-08-17 12:20:15 +00:00
|
|
|
/**
|
2014-05-22 18:54:58 +00:00
|
|
|
* Copyright (c) 2013-2014 Tomas Dzetkulic
|
|
|
|
* Copyright (c) 2013-2014 Pavol Rusnak
|
2013-08-17 12:20:15 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
|
|
|
|
* OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-08-21 18:23:43 +00:00
|
|
|
#include <stdio.h>
|
2014-07-16 13:06:15 +00:00
|
|
|
#include <assert.h>
|
2013-08-17 12:20:15 +00:00
|
|
|
|
|
|
|
#include "rand.h"
|
|
|
|
|
2013-08-21 18:23:43 +00:00
|
|
|
static FILE *f;
|
|
|
|
|
2014-03-12 19:45:51 +00:00
|
|
|
void init_rand(void)
|
|
|
|
{
|
2013-08-21 18:23:43 +00:00
|
|
|
f = fopen("/dev/urandom", "r");
|
2013-08-17 12:20:15 +00:00
|
|
|
}
|
|
|
|
|
2014-12-20 18:57:38 +00:00
|
|
|
int finalize_rand(void)
|
2014-12-20 03:24:59 +00:00
|
|
|
{
|
2015-03-30 15:45:34 +00:00
|
|
|
int err = fclose(f);
|
|
|
|
f = NULL;
|
|
|
|
return err;
|
2014-12-20 03:24:59 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:45:51 +00:00
|
|
|
uint32_t random32(void)
|
|
|
|
{
|
2013-08-21 18:23:43 +00:00
|
|
|
uint32_t r;
|
2014-07-16 13:06:15 +00:00
|
|
|
size_t len = sizeof(r);
|
|
|
|
size_t len_read = fread(&r, 1, len, f);
|
|
|
|
assert(len_read == len);
|
2013-08-21 18:23:43 +00:00
|
|
|
return r;
|
2013-08-17 12:20:15 +00:00
|
|
|
}
|
2014-03-12 19:45:51 +00:00
|
|
|
|
2015-03-30 15:45:34 +00:00
|
|
|
uint32_t random_uniform(uint32_t n)
|
|
|
|
{
|
|
|
|
uint32_t x, max = 0xFFFFFFFF - (0xFFFFFFFF % n);
|
|
|
|
while ((x = random32()) >= max);
|
|
|
|
return x / (max / n);
|
|
|
|
}
|
|
|
|
|
2014-07-16 13:06:15 +00:00
|
|
|
void random_buffer(uint8_t *buf, size_t len)
|
2014-03-12 19:45:51 +00:00
|
|
|
{
|
2014-07-16 13:06:15 +00:00
|
|
|
size_t len_read = fread(buf, 1, len, f);
|
|
|
|
assert(len_read == len);
|
2014-03-12 19:45:51 +00:00
|
|
|
}
|
2015-03-30 15:45:34 +00:00
|
|
|
|
|
|
|
void random_permute(char *str, size_t len)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
char t;
|
|
|
|
for (i = len - 1; i >= 1; i--) {
|
|
|
|
j = random_uniform(i + 1);
|
|
|
|
t = str[j];
|
|
|
|
str[j] = str[i];
|
|
|
|
str[i] = t;
|
|
|
|
}
|
|
|
|
}
|