1.1.1 • Published 3 years ago

bcrypt-react-native v1.1.1

Weekly downloads
76
License
MIT
Repository
github
Last release
3 years ago

bcrypt-react-native

Native implementation of bcrypt for react-native.

Uses BCrypt for iOS.

Installation

npm install bcrypt-react-native

or

yarn add bcrypt-react-native
cd ios && pod install

Usage

import BcryptReactNative from 'bcrypt-react-native';

// ...
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

1.1.1

3 years ago

1.1.0

3 years ago

0.1.1

4 years ago

0.1.0

4 years ago