|
旋转跳跃
发表于 2019-3-15 11:10:15
- 商户号为99999,商户秘钥`secret/key`="05351f5ad630ffd7aa47692556a9d707"
- js 示例
- ```
- const crypto = require('crypto')
- function md5sha512Sign(str) {
- let sha512 = crypto.createHash('sha512').update(str).digest('hex')
- let md5 = crypto.createHash('md5').update(sha512).digest('hex')
- return md5
- }
- md5sha512Sign('service_id=99999&key=05351f5ad630ffd7aa47692556a9d707')
- // 572544a336d72fc70e4d1e85301363ab
- ```
复制代码 楼主,你可以参考下
|
|