mz_crypt_hmac_update method

int mz_crypt_hmac_update(
  1. Pointer<Void> handle,
  2. Pointer<Void> buf,
  3. int size
)

Implementation

int mz_crypt_hmac_update(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Void> buf,
  int size,
) {
  return _mz_crypt_hmac_update(
    handle,
    buf,
    size,
  );
}