且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在客户信息Magento的密码哈希

更新时间:2023-11-30 13:16:16

这就是所谓的盐渍密码哈希。结果
拆你有你的分贝值:。第一部分的盐腌散列,所述第二部分是盐。结果,
在Magento它的工作原理是这样的:

This is called a salted password hash.
Split the value you have in your db at :. The first part is the salted hash, the second part is the "salt".
In Magento it works like this:

$saltedHash = md5($salt.$password);

在您的情况下,盐是 LSC2VzugdDdUbghTHoTouZeMLxk14OPT 。结果
如果您尝试的MD5('LSC2VzugdDdUbghTHoTouZeMLxk14OPT123456') 2364b70e91268d8ecf59fffd47db692b 。结果
正是你需要的。

In your case the salt is LSC2VzugdDdUbghTHoTouZeMLxk14OPT.
If you try md5('LSC2VzugdDdUbghTHoTouZeMLxk14OPT123456') you get 2364b70e91268d8ecf59fffd47db692b.
Exactly what you need.