https://github.com/ks3sdk/ks3...
var hmacSha1 = function(encodedStr, sk) {
var hmac = crypto.createHmac('sha1', sk);
debug('over')
hmac.update(encodedStr);
return hmac.digest('base64');
};
var hmacMd5=function(encodedStr,sk){
var hmac = crypto.createHmac('md5', sk);
hmac.update(encodedStr);
return hmac.digest('base64');
};
参考
http://nodejs.cn/api/crypto.html
https://github.com/ks3sdk/ks3...
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。