Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
react-native-crypto
Advanced tools
Note: this module is a clone of crypto-browserify, with randombytes replaced. When React Native begins to support the "react-native" keyword in package.json, this module may go away
A port of node's crypto
module to React Native.
Because this module depends on some node core modules, and react-native doesn't currently have a resolve.alias a la webpack, you will need to use rn-nodeify for your shimming needs.
A suggested workflow:
npm i --save react-native-crypto
# install peer deps
npm i --save react-native-randombytes
react-native link react-native-randombytes
# install latest rn-nodeify
npm i --save-dev tradle/rn-nodeify
# install node core shims and recursively hack package.json files
# in ./node_modules to add/update the "browser"/"react-native" field with relevant mappings
./node_modules/.bin/rn-nodeify --hack --install
rn-nodeify
will create a shim.js
in the project root directory// index.ios.js or index.android.js
// make sure you use `import` and not require!
import './shim.js'
import crypto from 'crypto'
// ...the rest of your code
What follows is unedited text from crypto-browserify
The goal of this module is to reimplement node's crypto module so that it can run in react-native supported environments.
Here is the subset that is currently implemented:
these features from node's crypto
are still unimplemented.
these features would benefit from native implementations
If you are interested in writing a feature, please implement as a new module, which will be incorporated into crypto-browserify as a dependency.
All deps must be compatible with node's crypto (generate example inputs and outputs with node, and save base64 strings inside JSON, so that tests can run in the browser. see sha.js
Crypto is extra serious so please do not hesitate to review the code, and post comments if you do.
MIT
FAQs
implementation of crypto for React Native
The npm package react-native-crypto receives a total of 20,946 weekly downloads. As such, react-native-crypto popularity was classified as popular.
We found that react-native-crypto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.