nativescript-bcryptjs
bcrypt.js 的 NativeScript 插件
npm i --save nativescript-bcryptjs

nativescript-bcrypt.js

一个 NativeScript 插件,用于集成 bcrypt.js 以实现密码散列、比较等功能...

作者

如何使用

import {bcrypt} from ('nativescript-bcryptjs');
let salt = bcrypt.genSaltSync(10);
let hash2 = bcrypt.hashSync("password", salt);
let hash = bcrypt.hashSync("password", 4);
let comp = bcrypt.compareSync("password", hash);
bcrypt.genSalt(10, (err, salt) => {
bcrypt.hash("B4c0/\/", salt, (err, hash) => {
bcrypt.compare("B4c0/\/", hash, function (err, res) {
});
});
});