nodejs 使用md5加密和Python、php的不一样

当对接腾讯的语音识别相关的api的时候,签名需要使用md5加密,但是我使用node加密后,接口一直说签名无效,原来是自己node的使用问题,小记一下:
需要先用Buffer对str进行处理

var signature = crypto.createHash('md5').update(new Buffer(str)).digest('hex');

你可能感兴趣的:(nodejs 使用md5加密和Python、php的不一样)