bsdiff v4.3

sergey3695

Ветеран
Модератор
bsdiff and bspatch are tools for building and applying patches to binary files. By using suffix sorting (specifically, Larsson and Sadakane's qsufsort) and taking advantage of how executable files change.
bsdiff and bspatch use bzip2; by default they assume it is in /usr/bin.
bsdiff is quite memory-hungry. It requires max(17*n,9*n+m)+O(1) bytes of memory, where n is the size of the old file and m is the size of the new file. bspatch requires n+m+O(1) bytes.
bsdiff runs in O((n+m) log n) time; on a 200MHz Pentium Pro, building a binary patch for a 4MB file takes about 90 seconds. bspatch runs in O(n+m) time; on the same machine, applying that patch takes about two seconds.
Providing that off_t is defined properly, bsdiff and bspatch support files of up to 2^61-1 = 2Ei-1 bytes.
 

Вложения

Последнее редактирование:

sergey3695

Ветеран
Модератор
На вопросы, а что это? или а как этим пользоваться? а зачем это? - в гугл.
 

sergey3695

Ветеран
Модератор
diff 134 kb, bsdiff 175 kb, smartversion 197 kb
устарела инфа :D, но тут по иному можно использовать bsdiff, т.к. нет сверки сумм перед применением патча.
 
Сверху