mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 04:46:39 -04:00
12 lines
201 B
C
12 lines
201 B
C
/* This file is in the public domain. */
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/libkern.h>
|
|
|
|
#include <sodium/randombytes.h>
|
|
|
|
void
|
|
randombytes_buf(void *buf, size_t size)
|
|
{
|
|
arc4random_buf(buf, size);
|
|
}
|