2000-08-16 02:35:58 +02:00
|
|
|
/*
|
2004-02-17 06:49:41 +01:00
|
|
|
* Copyright (c) 1999,2000,2004 Damien Miller <djm@mindrot.org>
|
2000-08-16 02:35:58 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-08-16 02:35:58 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-08-16 02:35:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
2001-03-19 00:00:53 +01:00
|
|
|
#include "log.h"
|
2000-08-16 02:35:58 +02:00
|
|
|
|
2004-07-19 01:30:38 +02:00
|
|
|
RCSID("$Id: bsd-arc4random.c,v 1.9 2004/07/18 23:30:40 djm Exp $");
|
2001-02-09 02:55:35 +01:00
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
#ifndef HAVE_ARC4RANDOM
|
|
|
|
|
2000-09-24 02:10:13 +02:00
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include <openssl/rc4.h>
|
2001-03-19 00:00:53 +01:00
|
|
|
#include <openssl/err.h>
|
2000-09-24 02:10:13 +02:00
|
|
|
|
2000-08-30 00:40:09 +02:00
|
|
|
/* Size of key to use */
|
|
|
|
#define SEED_SIZE 20
|
|
|
|
|
|
|
|
/* Number of bytes to reseed after */
|
2000-10-27 00:27:32 +02:00
|
|
|
#define REKEY_BYTES (1 << 24)
|
2000-08-30 00:40:09 +02:00
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
static int rc4_ready = 0;
|
|
|
|
static RC4_KEY rc4;
|
|
|
|
|
|
|
|
unsigned int arc4random(void)
|
|
|
|
{
|
|
|
|
unsigned int r = 0;
|
2001-03-18 23:38:15 +01:00
|
|
|
static int first_time = 1;
|
2000-08-16 02:35:58 +02:00
|
|
|
|
2001-03-18 23:38:15 +01:00
|
|
|
if (rc4_ready <= 0) {
|
2002-05-09 00:57:18 +02:00
|
|
|
if (first_time)
|
2001-03-18 23:38:15 +01:00
|
|
|
seed_rng();
|
|
|
|
first_time = 0;
|
2000-08-16 02:35:58 +02:00
|
|
|
arc4random_stir();
|
2001-03-18 23:38:15 +01:00
|
|
|
}
|
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
RC4(&rc4, sizeof(r), (unsigned char *)&r, (unsigned char *)&r);
|
2000-08-30 00:40:09 +02:00
|
|
|
|
|
|
|
rc4_ready -= sizeof(r);
|
2000-08-16 02:35:58 +02:00
|
|
|
|
|
|
|
return(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
void arc4random_stir(void)
|
|
|
|
{
|
2000-08-30 00:40:09 +02:00
|
|
|
unsigned char rand_buf[SEED_SIZE];
|
2004-07-19 01:30:38 +02:00
|
|
|
int i;
|
2000-08-30 00:40:09 +02:00
|
|
|
|
2001-03-18 23:38:15 +01:00
|
|
|
memset(&rc4, 0, sizeof(rc4));
|
2003-03-17 06:13:53 +01:00
|
|
|
if (RAND_bytes(rand_buf, sizeof(rand_buf)) <= 0)
|
2001-03-18 23:38:15 +01:00
|
|
|
fatal("Couldn't obtain random bytes (error %ld)",
|
|
|
|
ERR_get_error());
|
2000-08-16 02:35:58 +02:00
|
|
|
RC4_set_key(&rc4, sizeof(rand_buf), rand_buf);
|
2004-07-19 01:30:38 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Discard early keystream, as per recommendations in:
|
|
|
|
* http://www.wisdom.weizmann.ac.il/~itsik/RC4/Papers/Rc4_ksa.ps
|
|
|
|
*/
|
|
|
|
for(i = 0; i <= 256; i += sizeof(rand_buf))
|
|
|
|
RC4(&rc4, sizeof(rand_buf), rand_buf, rand_buf);
|
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
memset(rand_buf, 0, sizeof(rand_buf));
|
2001-03-18 23:38:15 +01:00
|
|
|
|
2000-08-30 00:40:09 +02:00
|
|
|
rc4_ready = REKEY_BYTES;
|
2000-08-16 02:35:58 +02:00
|
|
|
}
|
|
|
|
#endif /* !HAVE_ARC4RANDOM */
|