We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a48c10 + 70d7fb1 commit c057a09Copy full SHA for c057a09
index.js
@@ -49,6 +49,13 @@ function getRandomValues (array) {
49
throw new QuotaExceededError('Can only request a maximum of 65536 bytes')
50
}
51
52
+ // Expo SDK 48+
53
+ if (global.expo && global.expo.modules && global.expo.modules.ExpoCrypto && global.expo.modules.ExpoCrypto.getRandomValues) {
54
+ // ExpoCrypto.getRandomValues doesn't return the array
55
+ global.expo.modules.ExpoCrypto.getRandomValues(array)
56
+ return array
57
+ }
58
+
59
// Calling getRandomBase64 in debug mode leads to the error
60
// "Calling synchronous methods on native modules is not supported in Chrome".
61
// So in that specific case we fall back to just using Math.random.
0 commit comments