sha256_final method

void sha256_final(
  1. Pointer<SHA256_CTX> ctx,
  2. Pointer<BYTE> hash
)

Implementation

void sha256_final(
  ffi.Pointer<SHA256_CTX> ctx,
  ffi.Pointer<BYTE> hash,
) {
  return _sha256_final(
    ctx,
    hash,
  );
}