randombytes_buf_deterministic method

void randombytes_buf_deterministic(
  1. Pointer<Void> buf,
  2. int size,
  3. Pointer<UnsignedChar> seed
)

Implementation

void randombytes_buf_deterministic(
  ffi.Pointer<ffi.Void> buf,
  int size,
  ffi.Pointer<ffi.UnsignedChar> seed,
) {
  return _randombytes_buf_deterministic(
    buf,
    size,
    seed,
  );
}