├── .gitignore ├── LICENSE ├── README.md ├── RNRandomBytes.h ├── RNRandomBytes.m ├── RNRandomBytes.xcodeproj └── project.pbxproj ├── RNRandomBytesTests └── Info.plist ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── bitgo │ └── randombytes │ ├── RandomBytesModule.java │ └── RandomBytesPackage.java ├── index.js ├── package.json ├── react-native-randombytes.podspec ├── settings.gradle └── windows ├── .gitignore ├── .npmignore ├── RNRandomBytes.sln └── RNRandomBytes ├── Properties ├── AssemblyInfo.cs └── RNRandomBytes.rd.xml ├── RNRandomBytes.csproj ├── RNRandomBytesModule.cs ├── RNRandomBytesPackage.cs └── project.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/README.md -------------------------------------------------------------------------------- /RNRandomBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/RNRandomBytes.h -------------------------------------------------------------------------------- /RNRandomBytes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/RNRandomBytes.m -------------------------------------------------------------------------------- /RNRandomBytes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/RNRandomBytes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RNRandomBytesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/RNRandomBytesTests/Info.plist -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/bitgo/randombytes/RandomBytesModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/android/src/main/java/com/bitgo/randombytes/RandomBytesModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/bitgo/randombytes/RandomBytesPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/android/src/main/java/com/bitgo/randombytes/RandomBytesPackage.java -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/package.json -------------------------------------------------------------------------------- /react-native-randombytes.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/react-native-randombytes.podspec -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'randombytes' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/.npmignore -------------------------------------------------------------------------------- /windows/RNRandomBytes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes.sln -------------------------------------------------------------------------------- /windows/RNRandomBytes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /windows/RNRandomBytes/Properties/RNRandomBytes.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/Properties/RNRandomBytes.rd.xml -------------------------------------------------------------------------------- /windows/RNRandomBytes/RNRandomBytes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/RNRandomBytes.csproj -------------------------------------------------------------------------------- /windows/RNRandomBytes/RNRandomBytesModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/RNRandomBytesModule.cs -------------------------------------------------------------------------------- /windows/RNRandomBytes/RNRandomBytesPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/RNRandomBytesPackage.cs -------------------------------------------------------------------------------- /windows/RNRandomBytes/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvayngrib/react-native-randombytes/HEAD/windows/RNRandomBytes/project.json --------------------------------------------------------------------------------