crypto_secretstream_xchacha20poly1305_pull method

int crypto_secretstream_xchacha20poly1305_pull(
  1. Pointer<crypto_secretstream_xchacha20poly1305_state> state,
  2. Pointer<UnsignedChar> m,
  3. Pointer<UnsignedLongLong> mlen_p,
  4. Pointer<UnsignedChar> tag_p,
  5. Pointer<UnsignedChar> c,
  6. int clen,
  7. Pointer<UnsignedChar> ad,
  8. int adlen,
)

Implementation

@pragma('vm:prefer-inline')
int crypto_secretstream_xchacha20poly1305_pull(
  _i1.Pointer<_i2.crypto_secretstream_xchacha20poly1305_state> state,
  _i1.Pointer<_i1.UnsignedChar> m,
  _i1.Pointer<_i1.UnsignedLongLong> mlen_p,
  _i1.Pointer<_i1.UnsignedChar> tag_p,
  _i1.Pointer<_i1.UnsignedChar> c,
  int clen,
  _i1.Pointer<_i1.UnsignedChar> ad,
  int adlen,
) => _i2.crypto_secretstream_xchacha20poly1305_pull(
  state,
  m,
  mlen_p,
  tag_p,
  c,
  clen,
  ad,
  adlen,
);