PHP 中的 Django 密码解密(使用 salt 和 cypher)

Django Password Decrypt in PHP (with salt and cypher)

在 Django 中,我们保存一个散列密码密码,如

"gAAAAABgiwEaPluFLV48a1kZFLIQDJfvk5elLjRGBAwuLVwnkhzpOtxLTU4n6ble1pB0DNCYdDdcU1MaGL3uFAQvwILVJNx50w=="

还有盐

"-GcGi6r3TmMNz5cD8Cagpfli3Es-hz_s3hda5vr5G60="

在Python我用Fernet Library解密密码像

f = Fernet(salt)
password = f.decrypt(bytes(password_cypher.encode())).decode()

问题是 php 中的这种方法如何解密...? (Laravel & PHP)

在 php 我使用了库

kelvinmo/fernet-php

而且代码很简单

$fernet = new \Fernet\Fernet(salt);
echo $fernet->decode(password_cypher)