md5_final method

void md5_final(
  1. Pointer<MD5_CTX> ctx,
  2. Pointer<BYTE2> hash
)

Implementation

void md5_final(
  ffi.Pointer<MD5_CTX> ctx,
  ffi.Pointer<BYTE2> hash,
) {
  return _md5_final(
    ctx,
    hash,
  );
}