crypto_box_curve25519xsalsa20poly1305_open method

int crypto_box_curve25519xsalsa20poly1305_open(
  1. Pointer<UnsignedChar> m,
  2. Pointer<UnsignedChar> c,
  3. int clen,
  4. Pointer<UnsignedChar> n,
  5. Pointer<UnsignedChar> pk,
  6. Pointer<UnsignedChar> sk,
)

Implementation

int crypto_box_curve25519xsalsa20poly1305_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_curve25519xsalsa20poly1305_open(
    m,
    c,
    clen,
    n,
    pk,
    sk,
  );
}