4 Created: Oct 2000 by Philip Homburg <philip@f-mnx.phicoh.com>
6 Generate 256-bit random numbers
12 #include <minix/sha2.h>
17 static u32_t base_bits
[8];
19 void init_rand256(bits
)
22 memcpy(base_bits
, bits
, sizeof(base_bits
));
35 SHA256_Update(&ctx
, (unsigned char *)base_bits
, sizeof(base_bits
));
36 SHA256_Final(bits
, &ctx
);
40 * $PchId: rand256.c,v 1.1 2005/06/28 14:13:43 philip Exp $