crypto_box method

Implementation

int crypto_box(
  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(
    c,
    m,
    mlen,
    n,
    pk,
    sk,
  );
}