crypto_box_seal method

int crypto_box_seal(
  1. Pointer<UnsignedChar> c,
  2. Pointer<UnsignedChar> m,
  3. int mlen,
  4. Pointer<UnsignedChar> pk,
)

Implementation

int crypto_box_seal(
  ffi.Pointer<ffi.UnsignedChar> c,
  ffi.Pointer<ffi.UnsignedChar> m,
  int mlen,
  ffi.Pointer<ffi.UnsignedChar> pk,
) {
  return _crypto_box_seal(
    c,
    m,
    mlen,
    pk,
  );
}