etebase_utils_randombytes method
Return a buffer filled with cryptographically random bytes
@paramout
buf the output byte buffer
@param size the size of the returned buffer
Implementation
int etebase_utils_randombytes(
ffi.Pointer<ffi.Void> buf,
int size,
) {
return _etebase_utils_randombytes(
buf,
size,
);
}