crypto_stream_chacha20_xor method
int
crypto_stream_chacha20_xor(
- Pointer<
UnsignedChar> c, - Pointer<
UnsignedChar> m, - int mlen,
- Pointer<
UnsignedChar> n, - Pointer<
UnsignedChar> k,
Implementation
int crypto_stream_chacha20_xor(
ffi.Pointer<ffi.UnsignedChar> c,
ffi.Pointer<ffi.UnsignedChar> m,
int mlen,
ffi.Pointer<ffi.UnsignedChar> n,
ffi.Pointer<ffi.UnsignedChar> k,
) {
return _crypto_stream_chacha20_xor(
c,
m,
mlen,
n,
k,
);
}