node-sign
v1.0.3
Published
### 安装
Downloads
1
Readme
node-sign
安装
npm install node-sign
使用说明
const Signature = require('node-sign');
const sign = Signature(option);
const signStr = sign([str1,str2,str3]);
const signStrAnother = sign({
str1: '...',
str2: '...',
str3: '...'
});
签名方法
签名方法可接受两种类型
- 字符串数组
- 对象
option
option包含
- sort 选填,排序方法
- hashMethod 选填,摘要方法,默认md5