From 6b746a83bc84247a8d0a52a6e9d2cf610fb6d5f4 Mon Sep 17 00:00:00 2001 From: Jephte CLAIN Date: Fri, 4 Jul 2014 12:56:25 +0400 Subject: [PATCH] =?UTF-8?q?liste=20des=20m=C3=A9thodes=20du=20module?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyulib/src/ulib/base/password.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyulib/src/ulib/base/password.py b/pyulib/src/ulib/base/password.py index 876d6e8..073da72 100644 --- a/pyulib/src/ulib/base/password.py +++ b/pyulib/src/ulib/base/password.py @@ -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