Non blocking and fast scrypt implementation for React Native.
scrypt is a password-based key derivation function designed to make it costly to perform hardware attacks on the derived keys. While there exist scrypt implementations written in javascript they are extremely slow and impractical for use in mobile apps.
This plugin is for use with React Native and allows your application to use scrypt on iOS/Android devices using native C code, achieving orders of magnitude faster calculation. It is based on libscrypt.
$ npm install @seald-io/react-native-scrypt --save
$ react-native link @seald-io/react-native-scrypt
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜@seald-io/react-native-scrypt
and addRNScrypt.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNScrypt.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.crypho.scrypt.RNScryptPackage;
to the imports at the top of the file - Add
new RNScryptPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':@seald-io/react-native-scrypt' project(':@seald-io/react-native-scrypt').projectDir = new File(rootProject.projectDir, '../node_modules/@seald-io/react-native-scrypt/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':@seald-io/react-native-scrypt')
import scrypt from '@seald-io/react-native-scrypt';
// With 'legacy' encoding (default): passwd must be a string, salt must be an array of bytes integers
// With 'hex' encoding: passwd and salt must be string encoded in hexadecimal
// With 'base64' encoding: passwd and salt must be string encoded in base64
// With 'buffer' encoding: passwd and salt must be Buffers (in the sense of [`buffer`](https://github.com/feross/buffer/) package)
// see example/App.js
const result = await scrypt(passwd, salt[, N=16384, r=8, p=1, dkLen=64, encoding='legacy'])