Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-native-securerandom
Advanced tools
Generate cryptographically-secure random bytes in react native
A library to generate cryptographically-secure random bytes. Uses SecRandomCopyBytes
on iOS, SecureRandom
on Android and System.Security.Cryptography.RandomNumberGenerator
on Windows.
The library exports a single function:
Takes a length, the number of bytes to generate, and returns a Promise
that resolves with a Uint8Array
.
import { generateSecureRandom } from 'react-native-securerandom';
generateSecureRandom(12).then(randomBytes => console.log(randomBytes));
$ yarn add react-native-securerandom
$ react-native link react-native-securerandom
pod 'RNSecureRandom', :path => '../node_modules/react-native-securerandom'
to your Podfile
(changing your node_modules
path as appropriate)pod install
from the same directory as your Podfile
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-securerandom
and add RNSecureRandom.xcodeproj
libRNSecureRandom.a
to your project's Build Phases
➜ Link Binary With Libraries
android/app/src/main/java/[...]/MainActivity.java
import net.rhogan.rnsecurerandom.RNSecureRandomPackage;
to the imports at the top of the filenew RNSecureRandomPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-securerandom'
project(':react-native-securerandom').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-securerandom/android')
android/app/build.gradle
:
compile project(':react-native-securerandom')
node_modules/react-native-securerandom/windows/RNSecureRandom.sln
folder to your solution, and reference from your app.MainPage.cs
using Net.Rhogan.RNSecureRandom.RNSecureRandom;
to the usings at the top of the filenew RNSecureRandomPackage()
to the List<IReactPackage>
returned by the Packages
methodFAQs
Generate cryptographically-secure random bytes in react native
The npm package react-native-securerandom receives a total of 76,025 weekly downloads. As such, react-native-securerandom popularity was classified as popular.
We found that react-native-securerandom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.