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