md5加密节点js和magento不匹配..

时间:2015-12-02 12:00:32

标签: javascript php node.js magento encryption

我已在magento和node js中创建了登录服务。在magento中,如果客户注册了密码,则密码将使用md5 salt密钥值加密。 如果我使用crypto node js模块解密magento密码,则会抛出错误。

Error: Unknown cipher
    at Error (native)
    at new Decipher (crypto.js:210:16)
    at Object.Decipher (crypto.js:207:12)
    at D:\Workspace\mobileapp\routes\users.js:30:24
    at Layer.handle [as handle_request] (D:\Workspace\mobileapp\node_modules\express\lib\router\layer.js:95:5)
    at trim_prefix (D:\Workspace\mobileapp\node_modules\express\lib\router\index.js:312:13)
    at D:\Workspace\mobileapp\node_modules\express\lib\router\index.js:280:7
    at param (D:\Workspace\mobileapp\node_modules\express\lib\router\index.js:349:14)

只有我解密了magento密码,我才能验证我的登录密码是否匹配,我可以继续。我试图加密我的节点js登录密码,但密码不匹配..

1 个答案:

答案 0 :(得分:0)

  

在magento中,如果客户已使用密码注册,则密码将使用md5 salt密钥值进行加密。

这里有很多东西可以打开。

  1. Magento应该使用bcrypt,而不是MD5。
  2. MD5不是加密的。
  3. 什么是“盐键值”?
  

如果我使用加密节点js模块解密magento密码,则会引发错误。

您不能解密MD5,因为MD5不是加密的。

MD5是哈希函数。哈希函数不是加密的。

哈希函数是加密的!但是,并非所有的密码算法都是加密的。

Read this to understand the difference