mz_crypt_sha_end method

int mz_crypt_sha_end(
  1. Pointer<Void> handle,
  2. Pointer<Uint8> digest,
  3. int digest_size
)

Implementation

int mz_crypt_sha_end(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Uint8> digest,
  int digest_size,
) {
  return _mz_crypt_sha_end(
    handle,
    digest,
    digest_size,
  );
}