crypto_stream method
int
crypto_stream(
- Pointer<
UnsignedChar> c, - int clen,
- Pointer<
UnsignedChar> n, - Pointer<
UnsignedChar> k,
Implementation
int crypto_stream(
ffi.Pointer<ffi.UnsignedChar> c,
int clen,
ffi.Pointer<ffi.UnsignedChar> n,
ffi.Pointer<ffi.UnsignedChar> k,
) {
return _crypto_stream(
c,
clen,
n,
k,
);
}