sha1_final method

void sha1_final(
  1. Pointer<SHA1_CTX> ctx,
  2. Pointer<BYTE3> hash
)

Implementation

void sha1_final(
  ffi.Pointer<SHA1_CTX> ctx,
  ffi.Pointer<BYTE3> hash,
) {
  return _sha1_final(
    ctx,
    hash,
  );
}