crypto_stream_chacha20 method

int crypto_stream_chacha20(
  1. Pointer<UnsignedChar> c,
  2. int clen,
  3. Pointer<UnsignedChar> n,
  4. Pointer<UnsignedChar> k,
)

Implementation

int crypto_stream_chacha20(
  ffi.Pointer<ffi.UnsignedChar> c,
  int clen,
  ffi.Pointer<ffi.UnsignedChar> n,
  ffi.Pointer<ffi.UnsignedChar> k,
) {
  return _crypto_stream_chacha20(
    c,
    clen,
    n,
    k,
  );
}