| Server IP : 178.105.222.151 / Your IP : 216.73.216.38 Web Server : nginx/1.28.3 System : Linux MNK 7.0.0-15-generic #15-Ubuntu SMP PREEMPT_DYNAMIC Wed Apr 22 16:06:43 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.5.4 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/passlib/utils/ |
Upload File : |
"""
passlib.utils.des - DEPRECATED LOCATION, WILL BE REMOVED IN 2.0
This has been moved to :mod:`passlib.crypto.des`.
"""
from warnings import warn
from passlib.crypto.des import des_encrypt_block, des_encrypt_int_block, expand_des_key
from passlib.utils.decor import deprecated_function
warn(
"the 'passlib.utils.des' module has been relocated to 'passlib.crypto.des' "
"as of passlib 1.7, and the old location will be removed in passlib 2.0",
DeprecationWarning,
)
expand_des_key = deprecated_function(
deprecated="1.7", removed="2.0", replacement="passlib.crypto.des.expand_des_key"
)(expand_des_key)
des_encrypt_block = deprecated_function(
deprecated="1.7", removed="2.0", replacement="passlib.crypto.des.des_encrypt_block"
)(des_encrypt_block)
des_encrypt_int_block = deprecated_function(
deprecated="1.7",
removed="2.0",
replacement="passlib.crypto.des.des_encrypt_int_block",
)(des_encrypt_int_block)