all repos — circe-vpn @ 12ec1e49175f80aa014a42d2a7a020d62ba42af0

Circe VPN

core/platform.h (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
#ifndef CIRCE_CORE_PLATFORM_H
#define CIRCE_CORE_PLATFORM_H

#include <stdint.h>
#include <stddef.h>

/// Return 0 on success
int circe_platform_random_bytes_callback (uint8_t *out, size_t len);

#endif