Why crypto.createHash returns different output in new version?

回眸只為那壹抹淺笑 提交于 2019-11-29 02:02:06
robertklep

Some inputs in Node v6+ calculate a different hash than previous Node versions.

Basically, when you pass a string to .update(), with Node versions before v6 the default encoding was binary, but for Node v6 that changed to utf-8.

For example, take this code:

require('crypto').createHash('md5').update('¥').digest('hex')

This outputs ab3af8566ddd20d7efc9b314abe90755 on Node pre-6 and 07625e142e4ac5961de57472657a88c1 on Node 6.

If you want Node 6 to output the same as pre-6 versions, you have to tell .update() to use binary encoding:

require('crypto').createHash('md5').update('¥', 'binary').digest('hex')

Or the other way around (make Node pre-6 output the same as 6):

require('crypto').createHash('md5').update('¥', 'utf-8').digest('hex')

Just like mark this issue in github: https://github.com/nodejs/node/issues/6813 is about the default encoding for digests that was changed to utf8 in v5/v6 and in v4 and earlier it was binary

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!