Skip to content

ajnozari/react-native-get-random-values

 
 

Repository files navigation

crypto.getRandomValues for React Native

A small implementation of crypto.getRandomValues for React Native. This is useful to polyfill for libraries like uuid that depend on it.

Installation

npm install --save react-native-get-random-values
npx pod-install

💡 If you use the Expo managed workflow you will see "CocoaPods is not supported in this project" - this is fine, it's not necessary.

Windows

React Native 61

RNW 61 requires manual linking of the project. To get started: - Open the project solution using Visual Studio. - Right click on the project and select 'Add Existing Item'. - Navigate and select 'windows/RNGetRandomValues61/RNGetRandomValues61.vcxproj'.

React Native 62+

Starting from RNW 62, we now have support for autolinking.

Usage

This library works as a polyfill for the global crypto.getRandomValues.

// Add this line to your `index.js`
import 'react-native-get-random-values'

Now you can use uuid or other libraries that assume crypto.getRandomValues is available.

import { v4 as uuid } from 'uuid'

console.log(uuid())

API

crypto.getRandomValues(typedArray)

The crypto.getRandomValues() method lets you get cryptographically strong random values. The array given as the parameter is filled with random numbers (random in its cryptographic meaning).

To guarantee enough performance, implementations are not using a truly random number generator, but they are using a pseudo-random number generator seeded with a value with enough entropy. The PRNG used differs from one implementation to the other but is suitable for cryptographic usages. Implementations are also required to use a seed with enough entropy, like a system-level entropy source.

  • typedArray - Is an integer-based TypedArray, that is an Int8Array, a Uint8Array, an Int16Array, a Uint16Array, an Int32Array, or a Uint32Array. All elements in the array are going to be overridden with random numbers.

Returns the typed array that was passed in.

About

A small implementation of `getRandomValues` for React Native

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • JavaScript 29.7%
  • Java 23.6%
  • C++ 23.0%
  • Objective-C 10.9%
  • Ruby 9.6%
  • C 3.2%