├── .gitattributes ├── .github └── workflows │ ├── build-android.yml │ ├── build-ios.yml │ ├── notice-yarn-changes.yml │ ├── validate-android.yml │ ├── validate-cpp.yml │ └── validate-js.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── CMakeLists.txt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ └── cpp-adapter.cpp │ └── java │ └── com │ └── reactnativefastcrypto │ ├── FastCryptoModule.java │ └── FastCryptoPackage.java ├── babel.config.js ├── cpp ├── FastCryptoHostObject.cpp ├── FastCryptoHostObject.h └── JSI Utils │ ├── TypedArray.cpp │ └── TypedArray.h ├── example ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativefastcrypto │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.tsx ├── ios │ ├── FastCryptoExample-Bridging-Header.h │ ├── FastCryptoExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FastCryptoExample.xcscheme │ ├── FastCryptoExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── FastCryptoExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── File.swift │ ├── Gemfile │ ├── Gemfile.lock │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ └── Benchmarks.ts └── yarn.lock ├── ios ├── FastCrypto.xcodeproj │ └── project.pbxproj ├── FastCryptoModule.h └── FastCryptoModule.mm ├── package.json ├── react-native-fast-crypto.podspec ├── scripts └── bootstrap.js ├── src ├── FastCrypto.ts └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /.github/workflows/build-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/build-ios.yml -------------------------------------------------------------------------------- /.github/workflows/notice-yarn-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/notice-yarn-changes.yml -------------------------------------------------------------------------------- /.github/workflows/validate-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/validate-android.yml -------------------------------------------------------------------------------- /.github/workflows/validate-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/validate-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/validate-js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.github/workflows/validate-js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativefastcrypto/FastCryptoModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/src/main/java/com/reactnativefastcrypto/FastCryptoModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativefastcrypto/FastCryptoPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/android/src/main/java/com/reactnativefastcrypto/FastCryptoPackage.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /cpp/FastCryptoHostObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/cpp/FastCryptoHostObject.cpp -------------------------------------------------------------------------------- /cpp/FastCryptoHostObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/cpp/FastCryptoHostObject.h -------------------------------------------------------------------------------- /cpp/JSI Utils/TypedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/cpp/JSI Utils/TypedArray.cpp -------------------------------------------------------------------------------- /cpp/JSI Utils/TypedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/cpp/JSI Utils/TypedArray.h -------------------------------------------------------------------------------- /example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/.project -------------------------------------------------------------------------------- /example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativefastcrypto/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/java/com/example/reactnativefastcrypto/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativefastcrypto/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/java/com/example/reactnativefastcrypto/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/FastCryptoExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/FastCryptoExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/FastCryptoExample.xcodeproj/xcshareddata/xcschemes/FastCryptoExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample.xcodeproj/xcshareddata/xcschemes/FastCryptoExample.xcscheme -------------------------------------------------------------------------------- /example/ios/FastCryptoExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/FastCryptoExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/Info.plist -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/FastCryptoExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/FastCryptoExample/main.m -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/Gemfile -------------------------------------------------------------------------------- /example/ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/Gemfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/Benchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/src/Benchmarks.ts -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/FastCrypto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/ios/FastCrypto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/FastCryptoModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/ios/FastCryptoModule.h -------------------------------------------------------------------------------- /ios/FastCryptoModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/ios/FastCryptoModule.mm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/package.json -------------------------------------------------------------------------------- /react-native-fast-crypto.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/react-native-fast-crypto.podspec -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/FastCrypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/src/FastCrypto.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FastCrypto'; 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/react-native-jsi-library-template/HEAD/yarn.lock --------------------------------------------------------------------------------