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