mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
11 lines
356 B
Plaintext
11 lines
356 B
Plaintext
Python/C bindings for the ssdeep library at http://ssdeep.sourceforge.net:
|
|
|
|
* hash_buf / hash_bytes - returns the ssdeep hash for a given buffer
|
|
* hash_file - returns the ssdeep hash for filepath
|
|
* compare - returns the % match between 2 hashes
|
|
|
|
import pydeep
|
|
pydeep.hash_buf('somedata')
|
|
pydeep.hash_file('path-to-file')
|
|
pydeep.compare('hash1','hash2')
|