mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-05-25 09:54:29 +00:00
6bbbf0ac4b
Test passes with a dummy RNG.
11 lines
201 B
C
11 lines
201 B
C
#ifndef SXCRANDOM_H
|
|
#define SXCRANDOM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef void random_func (void *ctx, size_t length, uint8_t *dst);
|
|
|
|
void sxcrandom_dummy (void *ctx, size_t length, uint8_t *dst);
|
|
|
|
#endif
|