| /expo/apps/test-suite/tests/ |
| H A D | Random.js | 17 const bytes = Random.getRandomBytes(length); 26 const firstDraw = Random.getRandomBytes(length); 27 const secondDraw = Random.getRandomBytes(length);
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | RandomScreen.tsx | 1 import { getRandomBytes, getRandomBytesAsync } from 'expo-random'; 13 getRandomValues: (array) => getRandomBytes(array.byteLength), 29 random: getRandomBytes(10), 48 <HeadingText>getRandomBytes:</HeadingText>
|
| H A D | CryptoScreen.tsx | 9 name: 'getRandomBytes', 17 actions: Crypto.getRandomBytes,
|
| /expo/packages/expo-random/build/ |
| H A D | Random.js | 22 export function getRandomBytes(byteCount) { function 36 if (ExpoRandom.getRandomBytes) { 37 return ExpoRandom.getRandomBytes(validByteCount);
|
| H A D | Random.d.ts | 8 export declare function getRandomBytes(byteCount: number): Uint8Array; function
|
| H A D | ExpoRandom.web.d.ts | 3 getRandomBytes(length: number): Uint8Array; constant
|
| H A D | ExpoRandom.web.js | 5 getRandomBytes(length) {
|
| H A D | Random.js.map | 1 …getRandomBytes(byteCount: number): Uint8Array {\n warnIsDeprecated('getRandomBytes');\n assertBy…
|
| H A D | ExpoRandom.web.js.map | 1 …default {\n get name(): string {\n return 'ExpoRandom';\n },\n getRandomBytes(length: number…
|
| /expo/packages/expo-random/src/ |
| H A D | Random.ts | 34 export function getRandomBytes(byteCount: number): Uint8Array { function 48 if (ExpoRandom.getRandomBytes) { 49 return ExpoRandom.getRandomBytes(validByteCount);
|
| H A D | ExpoRandom.web.ts | 5 getRandomBytes(length: number): Uint8Array {
|
| /expo/packages/expo-crypto/build/ |
| H A D | Crypto.js | 20 export function getRandomBytes(byteCount) { function 33 if (ExpoCrypto.getRandomBytes) { 34 return ExpoCrypto.getRandomBytes(validByteCount);
|
| H A D | ExpoCrypto.web.d.ts | 6 getRandomBytes(length: number): Uint8Array; constant
|
| H A D | Crypto.d.ts | 11 export declare function getRandomBytes(byteCount: number): Uint8Array; function
|
| H A D | ExpoCrypto.web.js | 23 getRandomBytes(length) {
|
| H A D | Crypto.js.map | 1 …getRandomBytes(byteCount: number): Uint8Array {\n assertByteCount(byteCount, 'getRandomBytes');\n…
|
| H A D | ExpoCrypto.web.js.map | 1 …or('ERR_CRYPTO_DIGEST', 'Invalid encoding type provided.');\n },\n getRandomBytes(length: number…
|
| /expo/packages/expo-crypto/src/ |
| H A D | Crypto.ts | 27 export function getRandomBytes(byteCount: number): Uint8Array { function 40 if (ExpoCrypto.getRandomBytes) { 41 return ExpoCrypto.getRandomBytes(validByteCount);
|
| H A D | ExpoCrypto.web.ts | 32 getRandomBytes(length: number): Uint8Array {
|
| /expo/packages/expo-auth-session/build/ |
| H A D | PKCE.js | 9 const bytes = Crypto.getRandomBytes(input.length);
|
| H A D | PKCE.js.map | 1 …gth) input = new Uint8Array(input.buffer);\n\n const bytes = Crypto.getRandomBytes(input.length);…
|
| /expo/packages/expo-auth-session/src/ |
| H A D | PKCE.ts | 11 const bytes = Crypto.getRandomBytes(input.length);
|
| /expo/packages/expo-auth-session/src/__tests__/ |
| H A D | AuthRequest-test.ts | 6 getRandomBytes: jest.fn(() => ''),
|
| /expo/packages/expo-standard-web-crypto/build/ |
| H A D | getRandomValues.js.map | 1 …s not due to a lack of synchronous methods\n console.warn(`Random.getRandomBytes is not support…
|
| /expo/packages/expo-random/ |
| H A D | CHANGELOG.md | 166 - Add a synchronous version of `getRandomBytesAsync` called `getRandomBytes`. ([#9750](https://gith…
|