mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
14 lines
224 B
C
14 lines
224 B
C
|
|
/* This file is in the public domain. */
|
||
|
|
|
||
|
|
#include <sys/cdefs.h>
|
||
|
|
__FBSDID("$FreeBSD$");
|
||
|
|
#include <sys/libkern.h>
|
||
|
|
|
||
|
|
#include <sodium/randombytes.h>
|
||
|
|
|
||
|
|
void
|
||
|
|
randombytes_buf(void *buf, size_t size)
|
||
|
|
{
|
||
|
|
arc4random_buf(buf, size);
|
||
|
|
}
|