crypto_box_open_detached method

Implementation

int crypto_box_open_detached(
  ffi.Pointer<ffi.UnsignedChar> m,
  ffi.Pointer<ffi.UnsignedChar> c,
  ffi.Pointer<ffi.UnsignedChar> mac,
  int clen,
  ffi.Pointer<ffi.UnsignedChar> n,
  ffi.Pointer<ffi.UnsignedChar> pk,
  ffi.Pointer<ffi.UnsignedChar> sk,
) {
  return _crypto_box_open_detached(
    m,
    c,
    mac,
    clen,
    n,
    pk,
    sk,
  );
}