randombytes method

void randombytes(
  1. Pointer<UnsignedChar> buf,
  2. int buf_len
)

Implementation

void randombytes(
  ffi.Pointer<ffi.UnsignedChar> buf,
  int buf_len,
) {
  return _randombytes(
    buf,
    buf_len,
  );
}