crypto_box_curve25519xsalsa20poly1305 method

int crypto_box_curve25519xsalsa20poly1305(
  1. Pointer<UnsignedChar> c,
  2. Pointer<UnsignedChar> m,
  3. int mlen,
  4. Pointer<UnsignedChar> n,
  5. Pointer<UnsignedChar> pk,
  6. Pointer<UnsignedChar> sk,
)

Implementation

int crypto_box_curve25519xsalsa20poly1305(
  ffi.Pointer<ffi.UnsignedChar> c,
  ffi.Pointer<ffi.UnsignedChar> m,
  int mlen,
  ffi.Pointer<ffi.UnsignedChar> n,
  ffi.Pointer<ffi.UnsignedChar> pk,
  ffi.Pointer<ffi.UnsignedChar> sk,
) {
  return _crypto_box_curve25519xsalsa20poly1305(
    c,
    m,
    mlen,
    n,
    pk,
    sk,
  );
}