Skip to main content

Whirlpool: Bindings for whirlpool hash reference implementation.

Project description

python-whirlpool

Travis CI Build Status AppVeyor Build Status License: Unlicense

The Whirlpool algorithm is designed by Vincent Rijmen and Paulo S.L.M. Barreto. It is a secure and modern digest function that has been recommended by the NESSIE project and adopted in the ISO/IEC 10118-3 international standard.

Digest functions, also known as hash functions, produce fixed-length output (a digest or hash) from a variable-length message. They are designed to be a one-way function.

This library is a Python wrapper around the Whirlpool C reference implementation. The Whirlpool reference implementations are public domain, as is this code.

The first version of the wrapper was written by James Cleveland with help from #python on irc.freenode.net.

Later on the wrapper was rewritten by Olaf Conradi to use the hashlib interface and he made the library compatible with Python 3.

Installation

This library is available on PyPI.

pip install whirlpool

Usage

This is the same interface as provided by the other digest algorithms in Python’s hashlib.

import whirlpool

wp = whirlpool.new("My String")
hashed_string = wp.hexdigest()

wp.update("My Salt")
hashed_string = wp.hexdigest()

Starting with Python 3 text strings (as shown above) are stored as unicode. You need to specify the encoding of these strings before hashing.

wp = whirlpool.new(data.encoding('utf-8'))

Strings that are marked as binary do not need encoding.

Development

The source code is available on GitHub.

git clone https://github.com/oohlaf/python-whirlpool.git
cd python-whirlpool

Install in development mode using:

python setup.py develop

Or install in editable mode using pip:

pip install -e .

Testing

This module is tested using Python 2.7, PyPy, and Python 3.3 and up.

You can run the test suite using

python setup.py test

Whirlpool Changelog

All notable changes to this project will be documented in this file. The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

1.0.0 (2018-02-19)

Added

  • Port to Python 3.

  • Added PyPy support. PyPy3 does not work due to functions that have not yet been ported (like missing PyUnicode_New).

  • Added Continuous Integration using Travis CI and AppVeyor.

  • Added automatic upload to PyPI for successful build tags. Proper vX.Y.Z style tags upload to production PyPI, any other build (including .devX appended) upload to Test PyPI.

Fixed

  • Fix struct function declaration prototype warnings.

  • Fix pointer warnings.

Changed

Deprecated

  • Removed the old deprecated hash() interface.

0.3 (2013-01-23)

Added

  • Added the same interface as other Python digest algorithms have (like the default hashlib module).

Changed

  • Created proper unit tests.

Deprecated

  • The hash() function is deprecated. Please transition to the hashlib interface and use new() and hexdigest().

0.2 (unreleased)

  • This release was skipped.

0.1 (2011-05-18)

Added

  • Initial commit by James Cleveland.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Whirlpool-1.0.0.tar.gz (41.9 kB view hashes)

Uploaded Source

Built Distributions

Whirlpool-1.0.0-cp36-cp36m-win_amd64.whl (51.8 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

Whirlpool-1.0.0-cp36-cp36m-win32.whl (52.3 kB view hashes)

Uploaded CPython 3.6m Windows x86

Whirlpool-1.0.0-cp36-cp36m-macosx_10_12_x86_64.whl (54.6 kB view hashes)

Uploaded CPython 3.6m macOS 10.12+ x86-64

Whirlpool-1.0.0-cp35-cp35m-win_amd64.whl (51.8 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

Whirlpool-1.0.0-cp35-cp35m-win32.whl (52.3 kB view hashes)

Uploaded CPython 3.5m Windows x86

Whirlpool-1.0.0-cp34-cp34m-win_amd64.whl (50.1 kB view hashes)

Uploaded CPython 3.4m Windows x86-64

Whirlpool-1.0.0-cp34-cp34m-win32.whl (51.3 kB view hashes)

Uploaded CPython 3.4m Windows x86

Whirlpool-1.0.0-cp33-cp33m-win_amd64.whl (50.1 kB view hashes)

Uploaded CPython 3.3m Windows x86-64

Whirlpool-1.0.0-cp33-cp33m-win32.whl (51.3 kB view hashes)

Uploaded CPython 3.3m Windows x86

Whirlpool-1.0.0-cp27-cp27m-win_amd64.whl (54.0 kB view hashes)

Uploaded CPython 2.7m Windows x86-64

Whirlpool-1.0.0-cp27-cp27m-win32.whl (55.3 kB view hashes)

Uploaded CPython 2.7m Windows x86

Whirlpool-1.0.0-cp27-cp27m-macosx_10_12_x86_64.whl (54.1 kB view hashes)

Uploaded CPython 2.7m macOS 10.12+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page