这是我第一次尝试处理 python 代码。我的客户最近给了我一个 python 代码:
python -c 'import crypt; print crypt.crypt("Pa55w0rd!", "$6$x88yEvVg")'
在上面的代码中,它用于加密密码。
密码是Pa55w0rd!盐值是x88yEvVg。我可以在 PHP 中执行上述代码吗?我试过这样做:
echo exec(`python -c "import crypt;print crypt.crypt('Pa55w0rd!', '\$6\$x88yEvVg\')"`);
谢谢。