crypto_secretbox_open_easy method

int crypto_secretbox_open_easy(
  1. Pointer<UnsignedChar> m,
  2. Pointer<UnsignedChar> c,
  3. int clen,
  4. Pointer<UnsignedChar> n,
  5. Pointer<UnsignedChar> k,
)

Implementation

int crypto_secretbox_open_easy(
  ffi.Pointer<ffi.UnsignedChar> m,
  ffi.Pointer<ffi.UnsignedChar> c,
  int clen,
  ffi.Pointer<ffi.UnsignedChar> n,
  ffi.Pointer<ffi.UnsignedChar> k,
) {
  return _crypto_secretbox_open_easy(
    m,
    c,
    clen,
    n,
    k,
  );
}