crypto_secretstream_xchacha20poly1305_init_push method

int crypto_secretstream_xchacha20poly1305_init_push(
  1. Pointer<crypto_secretstream_xchacha20poly1305_state> state,
  2. Pointer<UnsignedChar> header,
  3. Pointer<UnsignedChar> k
)

Implementation

int crypto_secretstream_xchacha20poly1305_init_push(
  ffi.Pointer<crypto_secretstream_xchacha20poly1305_state> state,
  ffi.Pointer<ffi.UnsignedChar> header,
  ffi.Pointer<ffi.UnsignedChar> k,
) {
  return _crypto_secretstream_xchacha20poly1305_init_push(
    state,
    header,
    k,
  );
}