libcurve/include/rand.h

11 lines
168 B
C

#pragma once
void rand_init_auto();
void rand_init_seeded(long seed);
void rand_get_bytes(char *dst, int length);
void sha256(char *message, int len, char *hash);