1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
Metadata-Version: 1.1
Name: ssdeep
Version: 3.1
Summary: Python wrapper for the ssdeep library
Home-page: http://github.com/DinoTools/python-ssdeep
Author: PhiBo (DinoTools)
Author-email: UNKNOWN
License: LGPLv3+
Description: ssdeep Python Wrapper
=====================
This is a straightforward Python wrapper for `ssdeep by Jesse Kornblum`_, which is a library for computing context
triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs
have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both
content and length.
.. image:: https://pypip.in/version/ssdeep/badge.svg
:target: https://pypi.python.org/pypi/ssdeep/
:alt: Latest Version
.. image:: https://pypip.in/license/ssdeep/badge.svg
:target: https://pypi.python.org/pypi/ssdeep/
:alt: License
.. image:: https://travis-ci.org/DinoTools/python-ssdeep.svg?branch=master
:target: https://travis-ci.org/DinoTools/python-ssdeep
How to use it
=============
To compute a fuzzy hash, use ``hash`` function:
.. code-block:: pycon
>>> import ssdeep
>>> hash1 = ssdeep.hash('Also called fuzzy hashes, Ctph can match inputs that have homologies.')
>>> hash1
'3:AXGBicFlgVNhBGcL6wCrFQEv:AXGHsNhxLsr2C'
>>> hash2 = ssdeep.hash('Also called fuzzy hashes, CTPH can match inputs that have homologies.')
>>> hash2
'3:AXGBicFlIHBGcL6wCrFQEv:AXGH6xLsr2C'
The ``compare`` function returns the match between 2 hashes, an integer value from 0 (no match) to 100.
.. code-block:: pycon
>>> ssdeep.compare(hash1, hash2)
22
More examples are available in the `python-ssdeep documentation`_.
Install
=======
If all requirements are met it is possible to install the wrapper by using pip or easy_install.
.. code-block:: console
$ pip install ssdeep
For more information have a look at the `python-ssdeep documentation`_.
Licensing
=========
The code is licensed under the terms of the LGPLv3+.
This wrapper includes the unchanged source distribution of `ssdeep version 2.10`_. It is licensed under the GPLv2.
.. _ssdeep by Jesse Kornblum: http://ssdeep.sourceforge.net/
.. _ssdeep version 2.10: http://ssdeep.sourceforge.net/changes.txt
.. _python-ssdeep documentation: http://python-ssdeep.readthedocs.org
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|