crypto_box_open method

Implementation

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