Are there any open source binaries?

From time to time I need to compare files in binary format, but are there any open source tools that can do this?

UltraCompare may, but it is a commercial product.

+3
source share
5 answers

There is an open source product called VBinDiff that I found in a search, but I have no direct experience with This. It seems to be cross-platform (Linux and Windows) and has packages for binary and source. Good luck

+4
source

bsdiff and xdelta are two that immediately come to mind.

+4
source

GNU diffutils cmp, , . , .

:

diff <(hexdump -v -e '1/1 "%02x\n"' binfile1) <(hexdump -v '1/1 "%02x\n"' binfile2)
+4

Subversion , . .

...

+2

GNU diff , . , xdelta (, SCM).

, hexdump , .

0

Source: https://habr.com/ru/post/1703018/


All Articles