Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
$hash = crypt( $password, $salt )
from crypt import crypt print(crypt("hello world", "ab"))
$hash = crypt ($password, $salt);
from crypt import crypt hash = crypt (password, salt)