├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Header.png ├── LICENSE ├── README.md ├── android ├── CMakeLists.txt ├── bindings.cpp ├── bindings.h ├── build.gradle ├── consumer-rules.pro ├── cpp-adapter.cpp ├── gradle.properties └── src │ └── main │ ├── AndroidManifestNew.xml │ ├── java │ └── com │ │ └── op │ │ └── s2 │ │ ├── OPS2Module.java │ │ └── OPS2Package.java │ └── kotlin │ └── com │ └── op │ └── s2 │ ├── CryptoManager.kt │ ├── OPS2Bridge.kt │ └── TSSAuthenticationCallback.kt ├── babel.config.js ├── bump-version.sh ├── cpp ├── logs.h └── macros.h ├── eslint.config.mjs ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── opsecurestorageexample │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── 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 │ │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── opsecurestorageexample │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── globals.d.ts ├── index.js ├── ios │ ├── .xcode.env │ ├── .xcode.env.local │ ├── File.swift │ ├── OpSecureStorageExample-Bridging-Header.h │ ├── OpSecureStorageExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OpSecureStorageExample.xcscheme │ ├── OpSecureStorageExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── OpSecureStorageExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Frame 14.png │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── OpSecureStorageExampleTests │ │ ├── Info.plist │ │ └── OpSecureStorageExampleTests.m │ ├── Podfile │ ├── Podfile.lock │ └── link-assets-manifest.json ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ ├── App.tsx │ └── tests │ │ ├── index.ts │ │ └── s2.ts └── tailwind.config.js ├── ios ├── OPS2.h ├── OPS2.mm ├── bindings.h └── bindings.mm ├── lefthook.yml ├── op-s2.podspec ├── package.json ├── src └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ospfranco] 2 | -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "prefer_split_fsevents_watcher": true 3 | } 4 | -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/Header.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/bindings.cpp -------------------------------------------------------------------------------- /android/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/bindings.h -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -keep class com.op.s2.** { *; } 2 | -------------------------------------------------------------------------------- /android/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/op/s2/OPS2Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/java/com/op/s2/OPS2Module.java -------------------------------------------------------------------------------- /android/src/main/java/com/op/s2/OPS2Package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/java/com/op/s2/OPS2Package.java -------------------------------------------------------------------------------- /android/src/main/kotlin/com/op/s2/CryptoManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/kotlin/com/op/s2/CryptoManager.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/op/s2/OPS2Bridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/kotlin/com/op/s2/OPS2Bridge.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/com/op/s2/TSSAuthenticationCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/android/src/main/kotlin/com/op/s2/TSSAuthenticationCallback.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/babel.config.js -------------------------------------------------------------------------------- /bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/bump-version.sh -------------------------------------------------------------------------------- /cpp/logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/cpp/logs.h -------------------------------------------------------------------------------- /cpp/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/cpp/macros.h -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/opsecurestorageexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/main/java/com/opsecurestorageexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/opsecurestorageexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/main/java/com/opsecurestorageexample/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/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/OP-Engineering/op-s2/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/release/java/com/opsecurestorageexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/app/src/release/java/com/opsecurestorageexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/globals.d.ts -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/.xcode.env.local: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample.xcodeproj/xcshareddata/xcschemes/OpSecureStorageExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample.xcodeproj/xcshareddata/xcschemes/OpSecureStorageExample.xcscheme -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/Images.xcassets/AppIcon.appiconset/Frame 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/Images.xcassets/AppIcon.appiconset/Frame 14.png -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/Info.plist -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExample/main.m -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/OpSecureStorageExampleTests/OpSecureStorageExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/OpSecureStorageExampleTests/OpSecureStorageExampleTests.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/ios/link-assets-manifest.json -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/tests/index.ts: -------------------------------------------------------------------------------- 1 | import './s2'; 2 | -------------------------------------------------------------------------------- /example/src/tests/s2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/src/tests/s2.ts -------------------------------------------------------------------------------- /example/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/example/tailwind.config.js -------------------------------------------------------------------------------- /ios/OPS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/ios/OPS2.h -------------------------------------------------------------------------------- /ios/OPS2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/ios/OPS2.mm -------------------------------------------------------------------------------- /ios/bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/ios/bindings.h -------------------------------------------------------------------------------- /ios/bindings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/ios/bindings.mm -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/lefthook.yml -------------------------------------------------------------------------------- /op-s2.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/op-s2.podspec -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OP-Engineering/op-s2/HEAD/yarn.lock --------------------------------------------------------------------------------