When cleaning duplicate files, safety is critical. A single false positive can delete your only copy of an important contract, tax document, or personal photograph. Here is how cryptographic duplicate verification guarantees safety.
The Flaw in Basic Name-Matching Tools
Basic duplicate utilities often rely on "fuzzy matching": they compare file names, modification dates, or file sizes. This is unsafe. Two completely different PDF invoices might both be named Invoice.pdf and share an identical 142KB size.
XrayMac's Two-Stage Verification Pipeline
- Stage 1 (Exact Byte-Length Filter): Candidate files must match to the single exact byte. Files with differing byte sizes are discarded in fractions of a millisecond.
- Stage 2 (SHA-256 Cryptographic Hash): XrayMac reads the binary stream and generates a 256-bit cryptographic digest. The probability of two distinct files sharing an identical SHA-256 hash is virtually zero (1 in 2256).
With XrayMac, duplicate identification is mathematically verified before any action is taken.