crypto_secretstream_xchacha20poly1305_push method
int
crypto_secretstream_xchacha20poly1305_push(
- Pointer<
crypto_secretstream_xchacha20poly1305_state> state, - Pointer<
UnsignedChar> c, - Pointer<
UnsignedLongLong> clen_p, - Pointer<
UnsignedChar> m, - int mlen,
- Pointer<
UnsignedChar> ad, - int adlen,
- int tag,
Implementation
int crypto_secretstream_xchacha20poly1305_push(
ffi.Pointer<crypto_secretstream_xchacha20poly1305_state> state,
ffi.Pointer<ffi.UnsignedChar> c,
ffi.Pointer<ffi.UnsignedLongLong> clen_p,
ffi.Pointer<ffi.UnsignedChar> m,
int mlen,
ffi.Pointer<ffi.UnsignedChar> ad,
int adlen,
int tag,
) {
return _crypto_secretstream_xchacha20poly1305_push(
state,
c,
clen_p,
m,
mlen,
ad,
adlen,
tag,
);
}