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