siwi-hash

1.0.2 • Public • Published

node Build Status npm npm Github file size

siwi-hash

md5 sha1 sha256 sha512

install

use npm

npm install siwi-cache

use yarn

yarn add siwi-cache

Example

md5

参数 类型 是否必选 含义
data String | Buffer | Object 加密值 字符串或者对象 对象会自动进行 JSON.stringify()
const Hash = require('siwi-hash')
 
const hash = new Hash()
 
class Example {
    constructor() {
        this.init()
    }
    async init () {
        const data = {name: 'siwi', age: 25}
        const res = await hash.md5(data)
        console.log(res)
    }
}
 
module.exports = new Example()

输出 :be00a2b28f9359b45195866c32ff74a5

sha1 sha256 sha512 参考md5

Package Sidebar

Install

npm i siwi-hash

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

12.2 kB

Total Files

8

Last publish

Collaborators

  • siwi