etebase_utils_randombytes method

int etebase_utils_randombytes(
  1. Pointer<Void> buf,
  2. int size
)

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,
  );
}