如何为 prestashop 哈希密码

How to Hash password for prestashop

我正在为 Prestashop 开发一个 Android 项目。 我在 API 中看到可以使用 Prestashop 的 Web 服务获得客户,但我看到密码是散列的。 我想问你我需要做什么才能从我的 Android 客户端哈希密码?

您需要 config/settings 中的 _COOKIE_KEY_ 常量的值。inc.php

哈希密码实际上是 _COOKIE_KEY_ 与实际密码串联的 MD5。所以在 PHP 中它看起来像:

md5(_COOKIE_KEY_.'customer actual password');