blob: e467508855acd25f24d3944e23eea07ddd54bc3e (
plain)
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
|
================================================
:mod:`passlib.utils.h64` - Hash-64 Codec helpers
================================================
.. module:: passlib.utils.h64
:synopsis: Hash-64 Codec helpers
Many of the password hash algorithms in passlib
use a encoding scheme very similar to (but not compatible with)
the standard base64 encoding scheme. the main differences are that
it assigns the characters *completely* different numeric values compared
to base64, as well as using ``.`` instead of ``+`` in it's character set.
This encoding system appears to have originated with des-crypt hash,
but is used by md5-crypt, sha-256-crypt, and others.
within passlib, this encoding is referred as ``hash64`` encoding,
and this module contains various utilities functions for encoding
and decoding strings in that format.
.. note::
It may *look* like bcrypt uses this scheme,
when in fact bcrypt uses yet another ordering,
which does not match hash64 or other base64 schemes.
Constants
=========
.. object:: CHARS = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
The character set used by the Hash-64 format.
A character's index in CHARS denotes it's corresponding 6-bit integer value.
Bytes <-> Hash64
================
.. autofunction:: encode_bytes
.. autofunction:: decode_bytes
.. autofunction:: encode_transposed_bytes
.. autofunction:: decode_transposed_bytes
Int <-> Hash64
==============
.. autofunction:: decode_int6
.. autofunction:: encode_int6
.. autofunction:: decode_int12
.. autofunction:: encode_int12
.. autofunction:: decode_int24
.. autofunction:: encode_int24
.. autofunction:: decode_int64
.. autofunction:: encode_int64
|