-
Which version of CRC32 are you looking for? There are several! See http://en.wikipedia.org/wiki/Cyclic_redundancy_check for a list.
2009-11-03 14:57:14 UTC in md5deep
-
The patch in SVN has been accepted.
2009-10-27 09:45:16 UTC in ssdeep
-
A patch for this feature, -a mode, has been checked into SVN.
2009-10-21 01:37:38 UTC in ssdeep
-
jessekornblum committed revision 86 to the ssdeep SVN repository, changing 10 files.
2009-10-20 21:50:30 UTC in ssdeep
-
Is it possible to modify the program to use a threshold of zero to display *all* match scores? Here's a patch to make it happen:
- --- ssdeep-2.2/match.c 2009-10-13 16:31:14.000000000 -0700
+++ ssdeep-2.2-local/match.c 2009-10-13 18:11:58.000000000 -0700
@@ -92,7 +92,7 @@
}
score = fuzzy_compare(sum,tmp->hash);
- - if (score > s->threshold)
+ if (score >= s->threshold)
{
if (s->mode...
2009-10-19 13:40:58 UTC in ssdeep
-
jessekornblum committed revision 85 to the ssdeep SVN repository, changing 2 files.
2009-10-11 13:57:16 UTC in ssdeep
-
The fix checked into SVN has passed testing and is accepted.
2009-09-29 12:55:44 UTC in md5deep
-
petiepooo, can you please test out the 'fixed' version now in SVN? (I put fixed in quotes as it's certainly possible that the current version has bugs..) [grin] thanks!
2009-09-24 10:38:10 UTC in md5deep
-
After thinking more about the issue, I've added a 'last block' check that avoids printing out a hash if no data was read in the block (e.g. bytes 512-511 in your example). Whether the C style offset or Python style offset is more intuitive is a toss-up. Regardless, users must learn *some* programming language's style. As such I'm sticking with the one they can use in a hex editor.
2009-09-24 10:36:50 UTC in md5deep
-
jessekornblum committed revision 206 to the md5deep SVN repository, changing 3 files.
2009-09-24 10:35:52 UTC in md5deep