Skip to main content

Wachtwoord is a ridiculously simple Python 3 specific password hashing library. It was written as none of the existing password hashing libraries, most notably fshp, passlib, cryha and Bcryptor supported Python 3.

Supported Hashing Schemes

Currently only one specific hashing scheme is supported: PBKDF2.

IMPORTANT Versions up to and including 0.12 didn’t implement PBKDF2 correctly. This version implements PBKDF2 directly from the specification as detailed in RFC2898. The implementation is tested against publicized test vectors (RFC6070)

Basic Usage

As Python 3 is very strict about the distinction between unicode strings and byte strings, Wachtwoord was designed to provide a uniform interface by requiring all input to be unicode strings and generating unicode strings as output exclusively.

Wachtwoord supports all the hash functions from the hashlib module. The length of the salt (default: 32) and the number of iterations (default: 10000) are configurable.

Two Modes Of Operation

Wachtwoord has two modes of operation. One where some minor initialization (that can fail) is done separately from the hashing of a password and one where both are done in one go. The former is more convenient when multiple passwords need to be hashed one after another. The other is more convenient when hashing is incidental.

Future hashing scheme extensions to Wachtwoord might make the initialization part more expensive. For the PBKDF2 scheme the difference is very small.

Separate initialization and hashing

>>> from wachtwoord.pbkdf2 import Engine
>>> engine = Engine()
>>> hash_encoded_password = engine.hash('secret_123')
>>> print(hash_encoded_password)
pbkdf2$sha512$10000$2qf1oL9GU0gq+Zf2+vWmuliL0WizwvyFUMWV3jG3o/M=$gzSkk0/WjTHACyaeDBe3czNdI+3iukVUm3f+vzNop2b/LwLQWf0r8WKv1TfzWaqYOnPH8vC3tDTBxdGDzEDYRw==
>>>
>>> is_correct_password = engine.verify('secret_123', hash_encoded_password)
>>> print(is_correct_password)
True
>>>

The Engine object allows certain parameters to be set that influence all the hashes that are subsequently generated. For instance, say we want to use the sha256 hash function instead of the default sha512 hash function:

>>> from wachtwoord.pbkdf2 import Engine
>>> engine = Engine(digestmod='sha256')
>>>

Similarly if we want to change the salt size and number of iterations we would call Engine as follows:

>>> from wachtwoord.pbkdf2 import Engine
>>> engine = Engine(digestmod='sha256', iterations=20000, salt_size=64)
>>>

Initialization and hashing in one go

>>> from wachtwoord.pbkdf2 import hash_password, verify_password
>>> hash_encoded_password = hash_password('secret_123')
>>> print(hash_encoded_password)
pbkdf2$sha512$10000$f6ULrQBJspk6JiwHiEDL8fpFLCf90mOAxAM1LCY4dO0=$xzCLvTdp7eQUuY5pfgFl33dx7/uGIMaeZ5Bm5hmLTMx43zi/OCiNgORRmkb5KfkjxRDkD7VNc/45DbHX1zDhcA==
>>>
>>> is_correct_password = verify_password('secret_123', hash_encoded_password)
>>> print(is_correct_password)
True
>>>

The fact that the initialization and hashing happen in one go does not prevent us from changing the default values. We could have called hash_password as follows:

>>> from wachtwoord.pbkdf2 import hash_password
>>> hash_encoded_password = hash_password('secret_123', digestmod='sha256', iterations=20000, salt_size=64)

Origin of the name Wachtwoord

Wachtwoord is Dutch for password.

Release files for wachtwoord 0.14

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for wachtwoord 0.14
File Size Uploaded
wachtwoord-0.14.tar.gz 7.2 kB Details

Release files / wachtwoord-0.14.tar.gz

Download URL wachtwoord-0.14.tar.gz
Size 7.2 kB
Tags Source
SHA-256 checksum
How to use checksums
f39c4b468c7aece17ff6f0bf80f48d34d3877343105feaeb92d75a8b6e46fdbf
BLAKE2b-256 checksum
How to use checksums
eda714a9621b2b83396bae26f11be9c6a94d3dfe9f13f01e58dc38a025e782e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.14 This release

1 release file

0.13

1 release file

0.12

1 release file

0.11

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page