liste des méthodes du module

This commit is contained in:
Jephté Clain 2014-07-04 12:56:25 +04:00
parent 2841700f2d
commit 6b746a83bc
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@ import i_need_py25
Les scheme supportés sont {CRYPT}, {SSHA}, {SMD5}, {SHA}, {MD5}
"""
__all__ = ()
__all__ = (
'is_crypt_scheme', 'is_smd5_scheme', 'is_ssha_scheme', 'is_md5_scheme', 'is_sha_scheme', 'get_scheme',
'get_crypt_salt', 'get_smd5_salt', 'get_ssha_salt', 'get_salt',
'gen_crypt_salt', 'gen_binary_salt', 'gen_salt',
'gen_crypt_hash', 'gen_binary_hash', 'gen_hash',
)
import base64, random, hashlib