blob: 2bade1c5973230a471aa207a62761cb60d73ae4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
=============================================================
:mod:`passlib.utils.pbkdf2` - PBKDF2 key derivation algorithm
=============================================================
.. module:: passlib.utils.pbkdf2
:synopsis: PBKDF2 key derivation algorithm
This module provides a single function, :func:`pbkdf2`,
which provides the ability to generate an arbitrary
length key using the PBKDF2 key derivation algorithm,
as specified in `rfc 2898 <http://tools.ietf.org/html/rfc2898>`_.
This function can be helpful in creating password hashes
using schemes which have been based around the pbkdf2 algorithm.
.. autofunction:: pbkdf2
|