crypto_secretstream_xchacha20poly1305_pull method
int
crypto_secretstream_xchacha20poly1305_pull(
- Pointer<
crypto_secretstream_xchacha20poly1305_state> state, - Pointer<
UnsignedChar> m, - Pointer<
UnsignedLongLong> mlen_p, - Pointer<
UnsignedChar> tag_p, - Pointer<
UnsignedChar> c, - int clen,
- Pointer<
UnsignedChar> ad, - int adlen,
Implementation
int crypto_secretstream_xchacha20poly1305_pull(
ffi.Pointer<crypto_secretstream_xchacha20poly1305_state> state,
ffi.Pointer<ffi.UnsignedChar> m,
ffi.Pointer<ffi.UnsignedLongLong> mlen_p,
ffi.Pointer<ffi.UnsignedChar> tag_p,
ffi.Pointer<ffi.UnsignedChar> c,
int clen,
ffi.Pointer<ffi.UnsignedChar> ad,
int adlen,
) {
return _crypto_secretstream_xchacha20poly1305_pull(
state,
m,
mlen_p,
tag_p,
c,
clen,
ad,
adlen,
);
}