bcrypt-react-native

Native implementation of bcrypt for react-native

Usage no npm install needed!

<script type="module">
  import bcryptReactNative from 'https://cdn.skypack.dev/bcrypt-react-native';
</script>

README

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