shhh:使用节点中的加密库的超简单数据哈希器 源码
嘘! shhh是一个用于单向散列敏感数据的小型库。 与bcrypt相似,但是在节点的加密库中使用scrypt 。 用法 import { hash , compare } from '@kerimhudson/shhh' // hash the value const hashedValue = hash ( 'SUPER_SECRET_PASSWORD' ) // provide your own salt if you'd prefer const hashedWithASalt = hash ( 'SUPER_SECRET_PASSWORD' , 'CUSTOM_SALT' ) // compare a string with the hashed value const compare ( 'SUPER_SECRET_PASSWORD' , hashedValue ) // re
文件列表
shhh-main.zip
(预估有个8文件)
shhh-main
.github
workflows
node.js.yml
798B
publish.yml
697B
src
index.ts
561B
tsconfig.json
818B
test
index.spec.js
2KB
暂无评论