Skip to main content

Twisted wrapper for scrypt

Project description

txscrypt is a Twisted-friendly wrapper for scrypt. scrypt is a key derivation function. It’s the kind of thing you want to use to store user’s passwords securely, if you’re writing a password storage library. (If you’re not, use one.)

https://dl.dropbox.com/u/38476311/Logos/txscrypt.png

How do I store a password?

Easy.

from txscrypt import computeKey
d = computeKey(password)
d.addCallback(storeSomewhere)

computeKey is a function. You give it the plaintext password, in bytes. If your user is giving you a password in Unicode, encode it first. You get a deferred that will fire, at some point, with a magical string of bytes. Store it.

Okay. How do I verify a password?

from txscrypt import verifyPassword
d = verifyPassword(stored, provided)

In this snippet, stored is the thing you got from computeKey. provided is the password as provided by the user. Give it the same treatment you gave the password before you passed it to computeKey. For example, if it’s Unicode, encode it.

You get a deferred. At some point in the future, it will fire with either True if the password matched or False if it didn’t.

Why is the magical string base64-encoded?

You’re not supposed to care about what’s in it. But, if you must know: because if it weren’t, it’d have a bunch of NUL bytes and other gnarly non-printable ASCII stuff in it, and that makes a lot of storage stuff balk.

Earlier versions of txscrypt used the raw bytes produced by scrypt. Some third party tools bit off those strings after the first NUL byte. Unluckily, this was immediately after the word “scrypt”, which were the first bytes of that string.

But what about salts?

txscrypt takes care of this for you.

(It computes a salt of sufficient length using your OS’ cryptographically secure random number generator.)

But what about timing attacks?

txscrypt takes care of this for you.

(That is, unless there are side channels related to multiple executions of scrypt on the same machine.)

But what about starving the thread pool?

txscrypt takes care of this for you.

(It creates a new thread pool just for running scrypt in.)

When should I create my own Wrapper object?

If you want to change:

  • the maximum computation time

  • the salt length

  • the thread pool

So, basically, never.

Changelog

1.0.0

Incompatible change with previous versions!

  • Remove deprecated checkPassword API

  • Use less high-quality entropy for salt bits

  • Use term “salt”, consistency with scrypt paper

  • Base64s output, prevents other software choking on NUL bytes

  • Internal rewrite, easier to test

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

txscrypt-1.0.0.tar.gz (4.5 kB view hashes)

Uploaded Source

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