PatterDiffer compares two files and identifies identical data sequences, displaying results in a table with both textual and hexadecimal formats.
With PatterDiffer, the structure of the data being analyzed is not important since the analysis is done on a binary level. In other words, the software analyzes the largest connected sequences of the two files being compared.
The algorithm used in PatterDiffer searches both data structures being compared for equal sequences. This process can involve a high number of different sequence possibilities. The runtime of the analysis is O(n) = n³, and the software displays the first optimal solution found while ignoring any other available solutions.
PatterDiffer also offers useful restrictions such as "Ignore Binary Zero" or "Minimal Sequence Length," which significantly speed up the analysis process. Overall, PatterDiffer is a reliable software that is ideal for various applications that require identifying equal data sequences in two different files.
Version 1.2: N/A