2.0.1 • Published 3 years ago
bcrypt-react-native-0.72.x v2.0.1
bcrypt-react-native-0.72.x
Native implementation of bcrypt for react-native.
Uses BCrypt for iOS.
Installation
npm install bcrypt-react-native-0.72.xor
yarn add bcrypt-react-native-0.72.xcd ios && pod installUsage
import BcryptReactNative from 'bcrypt-react-native-0.72.x';
// ...
try{
const salt = await BcryptReactNative.getSalt(10);
const hash = await BcryptReactNative.hash(salt, 'password');
const isSame = await BcryptReactNative.compareSync('password', hash);
} catch(e) {
console.log({ e })
}Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
2.0.1
3 years ago