@react-native-ohos/react-native-mmkv 3.3.1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/MMKV/Core/CMakeLists.txt +172 -0
- package/MMKV/Core/CodedInputData.cpp +252 -0
- package/MMKV/Core/CodedInputData.h +87 -0
- package/MMKV/Core/CodedInputDataCrypt.cpp +280 -0
- package/MMKV/Core/CodedInputDataCrypt.h +87 -0
- package/MMKV/Core/CodedInputDataCrypt_OSX.cpp +62 -0
- package/MMKV/Core/CodedInputData_OSX.cpp +92 -0
- package/MMKV/Core/CodedOutputData.cpp +186 -0
- package/MMKV/Core/CodedOutputData.h +88 -0
- package/MMKV/Core/Core.xcodeproj/project.pbxproj +707 -0
- package/MMKV/Core/Core.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/MMKV/Core/Core.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/MMKV/Core/Core.xcodeproj/xcshareddata/xcschemes/Core.xcscheme +67 -0
- package/MMKV/Core/Core.xcodeproj/xcshareddata/xcschemes/MMKVWatchCore.xcscheme +67 -0
- package/MMKV/Core/InterProcessLock.cpp +186 -0
- package/MMKV/Core/InterProcessLock.h +119 -0
- package/MMKV/Core/InterProcessLock_Android.cpp +103 -0
- package/MMKV/Core/InterProcessLock_Win32.cpp +108 -0
- package/MMKV/Core/KeyValueHolder.cpp +236 -0
- package/MMKV/Core/KeyValueHolder.h +122 -0
- package/MMKV/Core/MMBuffer.cpp +210 -0
- package/MMKV/Core/MMBuffer.h +111 -0
- package/MMKV/Core/MMKV.cpp +1702 -0
- package/MMKV/Core/MMKV.h +595 -0
- package/MMKV/Core/MMKVLog.cpp +127 -0
- package/MMKV/Core/MMKVLog.h +86 -0
- package/MMKV/Core/MMKVLog_Android.cpp +134 -0
- package/MMKV/Core/MMKVMetaInfo.hpp +99 -0
- package/MMKV/Core/MMKVPredef.h +293 -0
- package/MMKV/Core/MMKV_Android.cpp +261 -0
- package/MMKV/Core/MMKV_IO.cpp +1905 -0
- package/MMKV/Core/MMKV_IO.h +57 -0
- package/MMKV/Core/MMKV_OSX.cpp +423 -0
- package/MMKV/Core/MMKV_OSX.h +57 -0
- package/MMKV/Core/MemoryFile.cpp +603 -0
- package/MMKV/Core/MemoryFile.h +194 -0
- package/MMKV/Core/MemoryFile_Android.cpp +236 -0
- package/MMKV/Core/MemoryFile_Linux.cpp +125 -0
- package/MMKV/Core/MemoryFile_OSX.cpp +142 -0
- package/MMKV/Core/MemoryFile_Win32.cpp +554 -0
- package/MMKV/Core/MiniPBCoder.cpp +672 -0
- package/MMKV/Core/MiniPBCoder.h +151 -0
- package/MMKV/Core/MiniPBCoder_OSX.cpp +237 -0
- package/MMKV/Core/PBEncodeItem.hpp +104 -0
- package/MMKV/Core/PBUtility.cpp +61 -0
- package/MMKV/Core/PBUtility.h +148 -0
- package/MMKV/Core/ScopedLock.hpp +69 -0
- package/MMKV/Core/ThreadLock.cpp +75 -0
- package/MMKV/Core/ThreadLock.h +81 -0
- package/MMKV/Core/ThreadLock_Win32.cpp +89 -0
- package/MMKV/Core/aes/AESCrypt.cpp +273 -0
- package/MMKV/Core/aes/AESCrypt.h +112 -0
- package/MMKV/Core/aes/openssl/openssl_aes-armv4.S +1243 -0
- package/MMKV/Core/aes/openssl/openssl_aes.h +130 -0
- package/MMKV/Core/aes/openssl/openssl_aes_core.cpp +1044 -0
- package/MMKV/Core/aes/openssl/openssl_aes_locl.h +38 -0
- package/MMKV/Core/aes/openssl/openssl_aesv8-armx.S +308 -0
- package/MMKV/Core/aes/openssl/openssl_arm_arch.h +84 -0
- package/MMKV/Core/aes/openssl/openssl_cfb128.cpp +97 -0
- package/MMKV/Core/aes/openssl/openssl_md32_common.h +254 -0
- package/MMKV/Core/aes/openssl/openssl_md5.h +49 -0
- package/MMKV/Core/aes/openssl/openssl_md5_dgst.cpp +166 -0
- package/MMKV/Core/aes/openssl/openssl_md5_locl.h +75 -0
- package/MMKV/Core/aes/openssl/openssl_md5_one.cpp +30 -0
- package/MMKV/Core/aes/openssl/openssl_opensslconf.h +271 -0
- package/MMKV/Core/core.vcxproj +288 -0
- package/MMKV/Core/core.vcxproj.filters +150 -0
- package/MMKV/Core/crc32/Checksum.h +75 -0
- package/MMKV/Core/crc32/crc32_armv8.cpp +134 -0
- package/MMKV/Core/crc32/zlib/CMakeLists.txt +60 -0
- package/MMKV/Core/crc32/zlib/crc32.cpp +55 -0
- package/MMKV/Core/crc32/zlib/crc32.h +48 -0
- package/MMKV/Core/crc32/zlib/zconf.h +380 -0
- package/MMKV/Core/crc32/zlib/zutil.h +25 -0
- package/MMKV/LICENSE.TXT +193 -0
- package/MMKV/README.md +354 -0
- package/README.md +5 -0
- package/cpp/MMKVManagedBuffer.h +32 -0
- package/cpp/MmkvHostObject.cpp +355 -0
- package/cpp/MmkvHostObject.h +32 -0
- package/cpp/MmkvLogger.h +35 -0
- package/cpp/NativeMmkvModule.cpp +43 -0
- package/cpp/NativeMmkvModule.h +38 -0
- package/harmony/reactNativeMMKV/BuildProfile.ets +17 -0
- package/harmony/reactNativeMMKV/LICENSE +20 -0
- package/harmony/reactNativeMMKV/NOTICE +34 -0
- package/harmony/reactNativeMMKV/README.OpenSource +11 -0
- package/harmony/reactNativeMMKV/build-profile.json5 +9 -0
- package/harmony/reactNativeMMKV/hvigorfile.ts +6 -0
- package/harmony/reactNativeMMKV/index.ets +24 -0
- package/harmony/reactNativeMMKV/oh-package.json5 +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/CMakeLists.txt +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/ComponentDescriptors.h +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/EventEmitters.cpp +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/EventEmitters.h +182 -0
- package/harmony/reactNativeMMKV/src/main/cpp/HarmonyLogger.cpp +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/.clang-format +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/.dockerignore +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/.github/FUNDING.yml +14 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/.github/ISSUE_TEMPLATE/bug_report.md +45 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/.gitmodules +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/build.gradle +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/checkstyle.xml +156 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/debug.keystore +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/android-publish-private.gradle +207 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/android-publish.gradle +276 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/build_library.gradle +62 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/check.gradle +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradle.properties +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradlew +172 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/gradlew.bat +84 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/CMakeLists.txt +56 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/build.gradle +238 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/gradle.properties +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/proguard-rules.pro +9 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/androidTest/AndroidManifest.xml +11 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/androidTest/java/com/tencent/mmkv/MMKVTest.java +270 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/androidTest/java/com/tencent/mmkv/MMKVTestService.java +79 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/AndroidManifest.xml +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/aidl/com/tencent/mmkv/ParcelableMMKV.aidl +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/cpp/flutter-bridge.cpp +706 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/cpp/native-bridge.cpp +1244 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKV.java +2024 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVContentChangeNotification.java +34 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVContentProvider.java +174 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVHandler.java +63 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVLogLevel.java +52 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVProcessUtil.java +100 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/MMKVRecoverStrategic.java +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/NameSpace.java +214 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/NativeBuffer.java +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/ParcelableMMKV.java +108 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkv/src/main/java/com/tencent/mmkv/UnsupportedArchitectureException.java +27 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvannotation/build.gradle +34 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvannotation/src/main/AndroidManifest.xml +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvannotation/src/main/java/dalvik/annotation/optimization/FastNative.java +104 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/build.gradle +116 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/proguard-rules.pro +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/AndroidManifest.xml +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/aidl/com/tencent/mmkvdemo/IAshmemMMKV.aidl +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/cpp/CMakeLists.txt +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/cpp/mmkvdemo.cpp +245 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/Baseline.java +297 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/BenchMarkBaseService.java +363 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/FakeInfo.java +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/Info.java +69 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/MainActivity.java +1029 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/MultiProcessSharedPreferences.java +710 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/MyApplication.java +130 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/MyService.java +105 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/MyService_1.java +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/SQLiteKV.java +143 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/java/com/tencent/mmkvdemo/TestParcelable.java +70 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/kotlin/KotlinUsecase.kt +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/layout/activity_main.xml +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/values/colors.xml +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/values/strings.xml +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/mmkvdemo/src/main/res/values/styles.xml +11 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/pmd-ruleset.xml +44 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/proguard-rules/proguard-rules-android-lib.pro +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/proguard-rules/proguard-rules-test.pro +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Android/MMKV/settings.gradle +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/CHANGELOG.md +979 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/CODE_OF_CONDUCT.md +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/CONTRIBUTING.md +61 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CMakeLists.txt +207 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputData.cpp +248 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputData.h +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputDataCrypt.cpp +276 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputDataCrypt.h +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputDataCrypt_OSX.cpp +62 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedInputData_OSX.cpp +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedOutputData.cpp +182 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/CodedOutputData.h +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/Core.xcodeproj/project.pbxproj +703 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/Core.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/Core.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/Core.xcodeproj/xcshareddata/xcschemes/Core.xcscheme +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/Core.xcodeproj/xcshareddata/xcschemes/MMKVWatchCore.xcscheme +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/InterProcessLock.cpp +211 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/InterProcessLock.h +124 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/InterProcessLock_Android.cpp +104 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/InterProcessLock_Win32.cpp +108 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/KeyValueHolder.cpp +237 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/KeyValueHolder.h +122 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMBuffer.cpp +207 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMBuffer.h +119 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV.cpp +1791 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV.h +781 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKVLog.cpp +127 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKVLog.h +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKVLog_Android.cpp +134 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKVMetaInfo.hpp +99 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKVPredef.h +310 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV_Android.cpp +365 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV_IO.cpp +2049 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV_IO.h +85 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV_OSX.cpp +589 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MMKV_OSX.h +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile.cpp +716 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile.h +212 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile_Android.cpp +247 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile_Linux.cpp +126 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile_OSX.cpp +173 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MemoryFile_Win32.cpp +655 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MiniPBCoder.cpp +668 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MiniPBCoder.h +150 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/MiniPBCoder_OSX.cpp +237 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/PBEncodeItem.hpp +102 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/PBUtility.cpp +61 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/PBUtility.h +148 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/ScopedLock.hpp +69 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/ThreadLock.cpp +75 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/ThreadLock.h +81 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/ThreadLock_Win32.cpp +89 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/AESCrypt.cpp +293 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/AESCrypt.h +117 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_aes.h +98 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_aes_core.cpp +1044 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_aes_locl.h +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_aesv8-armx.S +308 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_arm_arch.h +84 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_cfb128.cpp +97 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_md32_common.h +254 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_md5.h +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_md5_dgst.cpp +166 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_md5_locl.h +75 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_md5_one.cpp +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/aes/openssl/openssl_opensslconf.h +271 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/core.vcxproj +288 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/core.vcxproj.filters +150 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/CMakeLists.txt +60 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/Checksum.h +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/crc32_armv8.cpp +134 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/zlib/crc32.cpp +55 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/zlib/crc32.h +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/zlib/zconf.h +380 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Core/crc32/zlib/zutil.h +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Dockerfile +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/LICENSE.TXT +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKV.podspec +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKV.xcworkspace/contents.xcworkspacedata +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKV.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKVAppExtension.podspec +37 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKVCore.podspec +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/MMKVWatchExtension.podspec +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Makefile +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/AppScope/app.json5 +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/AppScope/resources/base/element/string.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/AppScope/resources/base/media/app_icon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/BuildProfile.ets +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/CHANGELOG.md +75 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/Index.ets +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/README.md +208 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/build-profile.json5 +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/consumer-rules.txt +61 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/example/Index.ets +686 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/example/Util.ets +31 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/hvigorfile.ts +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/obfuscation-rules.txt +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/oh-package.json5 +22 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/cpp/CMakeLists.txt +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/cpp/flutter-bridge.cpp +703 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/cpp/native_bridge.cpp +1840 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/cpp/types/libmmkv/index.d.ts +80 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/cpp/types/libmmkv/oh-package.json5 +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/ets/utils/MMKV.ets +1073 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/ets/utils/MMKVHandler.ets +111 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/ets/utils/MMKVLogLevel.ets +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/ets/utils/NativeBuffer.ets +34 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/ets/utils/Util.ts +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/MMKV/src/main/module.json5 +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/build-profile.json5 +62 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/dependencies/hvigor-4.3.0.tgz +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/dependencies/hvigor-ohos-plugin-4.3.0.tgz +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/build-profile.json5 +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/hvigorfile.ts +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/obfuscation-rules.txt +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/oh-package.json5 +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/cpp/CMakeLists.txt +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/cpp/napi_init.cpp +233 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/cpp/types/libentry/index.d.ts +1 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/cpp/types/libentry/oh-package.json5 +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/Util/Baseline.ets +188 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/Util/MyMMKVHandler.ets +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/Util/Util.ets +220 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/entryability/EntryAbility.ets +107 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/pages/Index.ets +766 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/ets/process/DemoProcess.ets +31 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/module.json5 +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/element/color.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/media/background.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/media/foreground.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/media/layered_image.json +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/media/startIcon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/base/profile/main_pages.json +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/en_US/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/main/resources/zh_CN/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/mock/mock-config.json5 +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/ets/test/Ability.test.ets +55 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/ets/test/List.test.ets +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/ets/testability/TestAbility.ets +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/ets/testability/pages/Index.ets +37 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ets +110 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/module.json5 +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/resources/base/element/color.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/resources/base/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/resources/base/media/icon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/ohosTest/resources/base/profile/test_pages.json +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/test/List.test.ets +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/entry/src/test/LocalUnit.test.ets +53 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/hvigor/hvigor-config.json5 +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/hvigorfile.ts +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/OpenHarmony/oh-package.json5 +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/CMakeLists.txt +27 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/demo/CMakeLists.txt +65 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/demo/TestInterProcessLock.cpp +130 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/demo/UnitTest.cpp +272 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/demo/demo.cpp +1431 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/demo/process.cpp +78 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/CMakeLists.txt +87 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/callback.go +121 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/go.mod +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/golang-bridge.cpp +731 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/golang-bridge.h +131 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/mmkv.go +817 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/mmkv_test.go +33 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/test/go.mod +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/golang/test/main.go +455 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/src/CMakeLists.txt +83 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/POSIX/src/libmmkv.cpp +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/CMakeLists.txt +62 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/README.md +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/demo.py +368 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/libmmkv_python.cpp +454 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.appveyor.yml +35 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.clang-format +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.clang-tidy +77 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.cmake-format.yaml +73 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.codespell-ignore-lines +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.gitattributes +1 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/CODEOWNERS +9 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/CONTRIBUTING.md +388 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/dependabot.yml +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/labeler.yml +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/labeler_merged.yml +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/matchers/pylint.json +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/pull_request_template.md +19 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/ci.yml +1233 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/configure.yml +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/format.yml +60 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/labeler.yml +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/pip.yml +117 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.github/workflows/upstream.yml +116 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.pre-commit-config.yaml +156 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/.readthedocs.yml +20 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/CMakeLists.txt +375 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/LICENSE +29 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/MANIFEST.in +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/README.rst +181 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/SECURITY.md +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/Doxyfile +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/_static/css/custom.css +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/chrono.rst +81 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/custom.rst +93 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/eigen.rst +310 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/functional.rst +109 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/index.rst +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/overview.rst +170 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/stl.rst +249 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/cast/strings.rst +296 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/classes.rst +1335 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/embedding.rst +262 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/exceptions.rst +401 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/functions.rst +614 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/misc.rst +429 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/pycpp/index.rst +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/pycpp/numpy.rst +453 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/pycpp/object.rst +286 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/advanced/smart_ptrs.rst +174 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/basics.rst +307 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/benchmark.py +89 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/benchmark.rst +95 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/changelog.rst +3121 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/classes.rst +555 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/cmake/index.rst +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/compiling.rst +726 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/conf.py +369 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/faq.rst +308 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/index.rst +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/installing.rst +105 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/limitations.rst +72 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/pybind11-logo.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/reference.rst +130 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/release.rst +143 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/requirements.in +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/requirements.txt +275 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/docs/upgrade.rst +594 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/attr.h +690 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/buffer_info.h +208 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/cast.h +1848 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/chrono.h +225 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/common.h +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/complex.h +74 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/class.h +754 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/common.h +1268 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/descr.h +172 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/init.h +434 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/internals.h +749 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/type_caster_base.h +1214 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/detail/typeid.h +65 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/eigen/common.h +9 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/eigen/matrix.h +714 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/eigen/tensor.h +517 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/eigen.h +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/embed.h +313 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/eval.h +156 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/functional.h +138 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/gil.h +219 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/gil_safe_call_once.h +91 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/iostream.h +265 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/numpy.h +2135 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/operators.h +202 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/options.h +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/pybind11.h +3026 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/pytypes.h +2604 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/stl/filesystem.h +115 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/stl.h +448 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/stl_bind.h +822 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/include/pybind11/typing.h +239 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/noxfile.py +107 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/__init__.py +19 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/__main__.py +63 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/_version.py +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/commands.py +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/py.typed +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pybind11/setup_helpers.py +500 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/pyproject.toml +87 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/setup.cfg +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/setup.py +149 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/CMakeLists.txt +589 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/conftest.py +224 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/constructor_stats.h +322 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/cross_module_gil_utils.cpp +111 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/env.py +31 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/extra_python_package/pytest.ini +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/extra_python_package/test_files.py +296 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/local_bindings.h +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/object.h +205 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/pybind11_tests.cpp +131 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/pybind11_tests.h +98 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/pytest.ini +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/requirements.txt +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_async.cpp +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_async.py +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_buffers.cpp +259 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_buffers.py +230 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_builtin_casters.cpp +387 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_builtin_casters.py +530 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_call_policies.cpp +113 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_call_policies.py +249 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_callbacks.cpp +280 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_callbacks.py +227 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_chrono.cpp +81 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_chrono.py +207 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_class.cpp +656 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_class.py +503 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/CMakeLists.txt +80 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +46 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/main.cpp +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_cmake_build/test.py +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_const_name.cpp +55 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_const_name.py +31 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_constants_and_functions.cpp +158 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_constants_and_functions.py +58 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_copy_move.cpp +544 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_copy_move.py +140 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_custom_type_casters.cpp +217 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_custom_type_casters.py +124 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_custom_type_setup.cpp +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_custom_type_setup.py +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_docstring_options.cpp +129 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_docstring_options.py +66 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eigen_matrix.cpp +443 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eigen_matrix.py +816 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eigen_tensor.cpp +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eigen_tensor.inl +332 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eigen_tensor.py +290 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/CMakeLists.txt +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/catch.cpp +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/external_module.cpp +20 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/test_interpreter.cpp +488 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/test_interpreter.py +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_embed/test_trampoline.py +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_enum.cpp +133 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_enum.py +270 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eval.cpp +118 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eval.py +52 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_eval_call.py +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_exceptions.cpp +388 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_exceptions.h +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_exceptions.py +434 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_factory_constructors.cpp +430 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_factory_constructors.py +518 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_gil_scoped.cpp +144 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_gil_scoped.py +244 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_iostream.cpp +126 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_iostream.py +293 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_kwargs_and_defaults.cpp +325 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_kwargs_and_defaults.py +428 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_local_bindings.cpp +106 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_local_bindings.py +259 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_methods_and_attributes.py +539 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_modules.cpp +125 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_modules.py +118 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_multiple_inheritance.py +495 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_array.cpp +547 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_array.py +672 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_dtypes.cpp +639 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_dtypes.py +448 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_vectorize.cpp +107 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_numpy_vectorize.py +268 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_opaque_types.cpp +77 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_opaque_types.py +60 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_operator_overloading.cpp +281 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_operator_overloading.py +153 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_pickling.cpp +194 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_pickling.py +95 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_pytypes.cpp +926 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_pytypes.py +1050 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_sequences_and_iterators.py +267 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_smart_ptr.cpp +473 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_smart_ptr.py +317 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_stl.cpp +549 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_stl.py +383 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_stl_binders.cpp +275 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_stl_binders.py +395 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_tagbased_polymorphic.cpp +147 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_tagbased_polymorphic.py +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_thread.cpp +66 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_thread.py +44 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_type_caster_pyobject_ptr.cpp +167 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_type_caster_pyobject_ptr.py +122 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_union.cpp +22 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_union.py +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_unnamed_namespace_a.cpp +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_unnamed_namespace_a.py +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_unnamed_namespace_b.py +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_virtual_functions.cpp +592 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/test_virtual_functions.py +460 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tests/valgrind-python.supp +117 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/FindCatch.cmake +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/FindEigen3.cmake +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/FindPythonLibsNew.cmake +310 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/JoinPaths.cmake +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/check-style.sh +44 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/libsize.py +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/make_changelog.py +92 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11.pc.in +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11Common.cmake +429 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11Config.cmake.in +233 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11NewTools.cmake +341 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pybind11Tools.cmake +239 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/pyproject.toml +3 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/setup_global.py.in +63 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/setup_main.py.in +44 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/setup.py +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Python/unit_test.py +209 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/README.md +357 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/README_CN.md +301 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/SECURITY.md +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Script/dumpJavaSignature.py +144 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Script/formatCode.py +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/.clang-format +35 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32.sln +58 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32Demo/Win32Demo.cpp +548 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32Demo/Win32Demo.vcxproj +190 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32Demo/Win32Demo.vcxproj.filters +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32Demo/pch.cpp +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32Demo/pch.h +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32DemoProcess/Win32DemoProcess.cpp +88 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32DemoProcess/Win32DemoProcess.vcxproj +188 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32DemoProcess/Win32DemoProcess.vcxproj.filters +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32DemoProcess/pch.cpp +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/Win32/Win32DemoProcess/pch.h +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/.metadata +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/.vscode/launch.json +162 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/.vscode/settings.json +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/CHANGELOG.md +196 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/README.md +217 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/analysis_options.yaml +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/README.md +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/build.gradle +79 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/AndroidManifest.xml +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/java/com/tencent/mmkv_example/MainActivity.java +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/main/res/values/styles.xml +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/build.gradle +29 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/gradle.properties +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/settings.gradle +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/android/settings_aar.gradle +1 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Flutter/Debug.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Flutter/Release.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Flutter/ephemeral/flutter_lldb_helper.py +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Flutter/ephemeral/flutter_lldbinit +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Podfile +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/AppDelegate.h +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/AppDelegate.m +33 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Base.lproj/Main.storyboard +29 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Info.plist +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/Runner.entitlements +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner/main.m +29 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcodeproj/project.pbxproj +612 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +90 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/lib/main.dart +565 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/CMakeLists.txt +128 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/flutter/CMakeLists.txt +88 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/flutter/generated_plugins.cmake +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/runner/CMakeLists.txt +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/runner/main.cc +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/runner/my_application.cc +130 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/linux/runner/my_application.h +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Flutter/GeneratedPluginRegistrant.swift +14 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Podfile +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/AppDelegate.swift +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Info.plist +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner/Release.entitlements +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcodeproj/project.pbxproj +800 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/macos/RunnerTests/RunnerTests.swift +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/AppScope/app.json5 +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/AppScope/resources/base/element/string.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/AppScope/resources/base/media/app_icon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/build-profile.json5 +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/build-profile.json5 +34 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/hvigorfile.ts +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/oh-package.json5 +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/ets/entryability/EntryAbility.ets +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/ets/pages/Index.ets +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/ets/plugins/GeneratedPluginRegistrant.ets +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/module.json5 +53 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/base/element/color.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/base/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/base/media/icon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/base/profile/main_pages.json +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/en_US/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/main/resources/zh_CN/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/ets/test/Ability.test.ets +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/ets/test/List.test.ets +20 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/ets/testability/TestAbility.ets +63 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/ets/testability/pages/Index.ets +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/ets/testrunner/OpenHarmonyTestRunner.ts +64 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/module.json5 +51 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/resources/base/element/color.json +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/resources/base/element/string.json +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/resources/base/media/icon.png +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/entry/src/ohosTest/resources/base/profile/test_pages.json +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/hvigor/hvigor-config.json5 +20 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/hvigorfile.ts +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/ohos/oh-package.json5 +21 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/pubspec.yaml +75 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/CMakeLists.txt +108 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/flutter/CMakeLists.txt +109 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/flutter/generated_plugins.cmake +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/CMakeLists.txt +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/Runner.rc +121 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/flutter_window.cpp +71 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/flutter_window.h +33 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/main.cpp +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/resource.h +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/resources/app_icon.ico +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/runner.exe.manifest +14 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/utils.cpp +65 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/utils.h +19 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/win32_window.cpp +288 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/example/windows/runner/win32_window.h +102 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/lib/mmkv.dart +1052 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/mmkv.iml +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/pubspec.yaml +62 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/test/mmkv_test.dart +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/tool/fix_mmkv_plugin_name.rb +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv/tool/mmkvpodhelper.rb +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv.iml +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/CHANGELOG.md +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/README.md +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/build.gradle +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/gradle.properties +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/gradlew +160 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/gradlew.bat +90 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/settings.gradle +1 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/src/main/AndroidManifest.xml +1 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/android/src/main/java/com/tencent/mmkv/MMKVPlugin.java +82 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/lib/mmkv_android.dart +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_android/pubspec.yaml +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/.metadata +33 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/CHANGELOG.md +52 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/README.md +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/darwin/Classes/MMKVPlugin.h +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/darwin/Classes/MMKVPlugin.mm +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/darwin/Classes/flutter-bridge.h +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/darwin/Classes/flutter-bridge.mm +693 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/darwin/mmkv_ios.podspec +35 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/lib/mmkv_ios.dart +78 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ios/pubspec.yaml +44 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/.metadata +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/CHANGELOG.md +9 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/README.md +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/analysis_options.yaml +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/lib/mmkv_linux.dart +69 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/linux/CMakeLists.txt +63 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/linux/flutter-bridge.cpp +694 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/linux/include/mmkv_linux/mmkv_linux_plugin.h +46 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/linux/mmkv_linux_plugin.cc +97 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_linux/pubspec.yaml +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/.metadata +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/CHANGELOG.md +42 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/README.md +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/analysis_options.yaml +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/lib/mmkv_ohos.dart +84 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/build-profile.json5 +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/hvigorfile.ts +2 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/index.ets +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/oh-package.json5 +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/src/main/ets/components/plugin/MMKVPlugin.ets +78 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/ohos/src/main/module.json5 +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_ohos/pubspec.yaml +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/CHANGELOG.md +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/README.md +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/lib/mmkv_platform_ffi.dart +363 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/lib/mmkv_platform_interface.dart +363 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_platform_interface/pubspec.yaml +23 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/.metadata +30 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/CHANGELOG.md +9 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/LICENSE +193 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/README.md +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/analysis_options.yaml +4 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/lib/mmkv_win32.dart +69 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/pubspec.yaml +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/windows/CMakeLists.txt +71 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/windows/flutter-bridge.cpp +721 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/windows/include/mmkv_win32/mmkv_win32_plugin.h +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/flutter/mmkv_win32/windows/mmkv_win32_plugin.cpp +88 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV/AutoCleanInfo.hpp +65 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV/MMKV.h +552 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV/MMKVHandler.h +60 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV/Resources/Info.plist +24 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV/libMMKV.mm +1361 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/project.pbxproj +967 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/xcshareddata/xcschemes/MMKV For App Extension.xcscheme +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/xcshareddata/xcschemes/MMKV Static.xcscheme +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/xcshareddata/xcschemes/MMKV.xcscheme +76 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKV/MMKV.xcodeproj/xcshareddata/xcschemes/MMKVWatchExtension.xcscheme +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/Config.xcconfig +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/AppDelegate.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/AppDelegate.m +43 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Base.lproj/LaunchScreen.storyboard +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Base.lproj/Main.storyboard +42 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/Info.plist +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/MMKVCatalystDemo.entitlements +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/SceneDelegate.h +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/SceneDelegate.m +58 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/ViewController.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/ViewController.mm +85 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVCatalystDemo/main.m +19 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/AppDelegate.h +27 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/AppDelegate.m +135 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/DemoSwiftUsage.swift +82 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/MMKVDemo-Bridging-Header.h +22 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/Base.lproj/LaunchScreen.storyboard +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/Base.lproj/Main.storyboard +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/Info.plist +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/MMKVDemo.entitlements +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/testReadOnly +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/Resources/testReadOnly.crc +0 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/TestMMKVCpp.cpp +204 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/TestMMKVCpp.hpp +18 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/ViewController+TestCaseBad.h +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/ViewController+TestCaseBad.mm +200 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/ViewController.h +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/ViewController.mm +1245 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo/main.m +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/project.pbxproj +1944 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/MMKVDemo.xcscheme +88 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/MMKVMacDemo.xcscheme +78 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/MMKVTodayExtensionDemo.xcscheme +116 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/WatchApp (Notification).xcscheme +106 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/WatchApp.xcscheme +102 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemo.xcodeproj/xcshareddata/xcschemes/kvdemo.xcscheme +78 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemoTests/Info.plist +22 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemoTests/MMKVDemoTests.mm +554 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVDemoTests/MMKVPerformanceTest.mm +118 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/AppDelegate.h +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/AppDelegate.m +27 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/Base.lproj/Main.storyboard +718 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/Info.plist +32 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/MMKVMacDemo.entitlements +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/ViewController.h +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/ViewController.mm +352 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVMacDemo/main.m +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVTodayExtensionDemo/Base.lproj/MainInterface.storyboard +45 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVTodayExtensionDemo/Info.plist +31 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVTodayExtensionDemo/MMKVTodayExtensionDemo.entitlements +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVTodayExtensionDemo/TodayViewController.h +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVTodayExtensionDemo/TodayViewController.m +106 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Contents.json +17 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json +12 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/ContentView.swift +71 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Info.plist +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/MMKVVisionDemoApp.swift +22 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/MMKVVisionDemo/Preview Content/Preview Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp/Assets.xcassets/AppIcon.appiconset/Contents.json +81 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp/Base.lproj/Interface.storyboard +47 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp/Info.plist +33 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Contents.json +48 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json +28 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/ExtensionDelegate.h +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/ExtensionDelegate.mm +135 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/Info.plist +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/InterfaceController.h +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/InterfaceController.m +50 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/NotificationController.h +26 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/NotificationController.m +60 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/WatchApp Extension/PushNotificationPayload.apns +20 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/AppDelegate.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/AppDelegate.m +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Assets.xcassets/Contents.json +6 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Base.lproj/LaunchScreen.storyboard +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Base.lproj/Main.storyboard +45 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/Info.plist +25 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/SceneDelegate.h +16 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/SceneDelegate.m +58 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/ViewController.h +15 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/ViewController.m +38 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/kvdemo.entitlements +10 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKV/iOS/MMKVDemo/kvdemo/main.m +19 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MMKVManagedBuffer.h +49 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvCxx.cpp +152 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvCxx.h +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvHostObject.cpp +357 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvHostObject.h +66 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvLogger.h +52 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvPlatformContext.cpp +37 -0
- package/harmony/reactNativeMMKV/src/main/cpp/MmkvPlatformContext.h +36 -0
- package/harmony/reactNativeMMKV/src/main/cpp/NativeMMKVComponentDescriptor.h +65 -0
- package/harmony/reactNativeMMKV/src/main/cpp/NativeMMKVJSIBinder.h +55 -0
- package/harmony/reactNativeMMKV/src/main/cpp/NativeMMKVPackage.h +67 -0
- package/harmony/reactNativeMMKV/src/main/cpp/Props.cpp +37 -0
- package/harmony/reactNativeMMKV/src/main/cpp/Props.h +42 -0
- package/harmony/reactNativeMMKV/src/main/cpp/ShadowNodes.cpp +39 -0
- package/harmony/reactNativeMMKV/src/main/cpp/ShadowNodes.h +41 -0
- package/harmony/reactNativeMMKV/src/main/cpp/States.cpp +40 -0
- package/harmony/reactNativeMMKV/src/main/cpp/States.h +45 -0
- package/harmony/reactNativeMMKV/src/main/ets/Logger.ts +65 -0
- package/harmony/reactNativeMMKV/src/main/ets/MmkvCxxPackage.ts +46 -0
- package/harmony/reactNativeMMKV/src/main/ets/MmkvCxxTurboModule.ts +60 -0
- package/harmony/reactNativeMMKV/src/main/ets/MmkvPlatformContextPackage.ts +46 -0
- package/harmony/reactNativeMMKV/src/main/ets/MmkvPlatformContextTurboModule.ts +48 -0
- package/harmony/reactNativeMMKV/src/main/module.json5 +7 -0
- package/harmony/reactNativeMMKV/src/main/resources/base/element/string.json +8 -0
- package/harmony/reactNativeMMKV/src/main/resources/en_US/element/string.json +8 -0
- package/harmony/reactNativeMMKV/src/main/resources/zh_CN/element/string.json +8 -0
- package/harmony/reactNativeMMKV/ts.ts +27 -0
- package/harmony/reactNativeMMKV.har +0 -0
- package/lib/commonjs/MMKV.js +124 -0
- package/lib/commonjs/MMKV.js.map +1 -0
- package/lib/commonjs/MemoryWarningListener.js +31 -0
- package/lib/commonjs/MemoryWarningListener.js.map +1 -0
- package/lib/commonjs/MemoryWarningListener.web.js +11 -0
- package/lib/commonjs/MemoryWarningListener.web.js.map +1 -0
- package/lib/commonjs/ModuleNotFoundError.js +75 -0
- package/lib/commonjs/ModuleNotFoundError.js.map +1 -0
- package/lib/commonjs/NativeMmkv.js +53 -0
- package/lib/commonjs/NativeMmkv.js.map +1 -0
- package/lib/commonjs/NativeMmkvPlatformContext.js +22 -0
- package/lib/commonjs/NativeMmkvPlatformContext.js.map +1 -0
- package/lib/commonjs/PlatformChecker.js +14 -0
- package/lib/commonjs/PlatformChecker.js.map +1 -0
- package/lib/commonjs/Types.js +32 -0
- package/lib/commonjs/Types.js.map +1 -0
- package/lib/commonjs/createMMKV.js +43 -0
- package/lib/commonjs/createMMKV.js.map +1 -0
- package/lib/commonjs/createMMKV.mock.js +43 -0
- package/lib/commonjs/createMMKV.mock.js.map +1 -0
- package/lib/commonjs/createMMKV.web.js +110 -0
- package/lib/commonjs/createMMKV.web.js.map +1 -0
- package/lib/commonjs/createTextEncoder.js +23 -0
- package/lib/commonjs/createTextEncoder.js.map +1 -0
- package/lib/commonjs/hooks.js +198 -0
- package/lib/commonjs/hooks.js.map +1 -0
- package/lib/commonjs/index.js +40 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/MMKV.js +119 -0
- package/lib/module/MMKV.js.map +1 -0
- package/lib/module/MemoryWarningListener.js +27 -0
- package/lib/module/MemoryWarningListener.js.map +1 -0
- package/lib/module/MemoryWarningListener.web.js +6 -0
- package/lib/module/MemoryWarningListener.web.js.map +1 -0
- package/lib/module/ModuleNotFoundError.js +70 -0
- package/lib/module/ModuleNotFoundError.js.map +1 -0
- package/lib/module/NativeMmkv.js +51 -0
- package/lib/module/NativeMmkv.js.map +1 -0
- package/lib/module/NativeMmkvPlatformContext.js +18 -0
- package/lib/module/NativeMmkvPlatformContext.js.map +1 -0
- package/lib/module/PlatformChecker.js +10 -0
- package/lib/module/PlatformChecker.js.map +1 -0
- package/lib/module/Types.js +31 -0
- package/lib/module/Types.js.map +1 -0
- package/lib/module/createMMKV.js +38 -0
- package/lib/module/createMMKV.js.map +1 -0
- package/lib/module/createMMKV.mock.js +38 -0
- package/lib/module/createMMKV.mock.js.map +1 -0
- package/lib/module/createMMKV.web.js +105 -0
- package/lib/module/createMMKV.web.js.map +1 -0
- package/lib/module/createTextEncoder.js +19 -0
- package/lib/module/createTextEncoder.js.map +1 -0
- package/lib/module/hooks.js +189 -0
- package/lib/module/hooks.js.map +1 -0
- package/lib/module/index.js +6 -0
- package/lib/module/index.js.map +1 -0
- package/lib/typescript/src/MMKV.d.ts +34 -0
- package/lib/typescript/src/MMKV.d.ts.map +1 -0
- package/lib/typescript/src/MemoryWarningListener.d.ts +3 -0
- package/lib/typescript/src/MemoryWarningListener.d.ts.map +1 -0
- package/lib/typescript/src/MemoryWarningListener.web.d.ts +3 -0
- package/lib/typescript/src/MemoryWarningListener.web.d.ts.map +1 -0
- package/lib/typescript/src/ModuleNotFoundError.d.ts +7 -0
- package/lib/typescript/src/ModuleNotFoundError.d.ts.map +1 -0
- package/lib/typescript/src/NativeMmkv.d.ts +91 -0
- package/lib/typescript/src/NativeMmkv.d.ts.map +1 -0
- package/lib/typescript/src/NativeMmkvPlatformContext.d.ts +20 -0
- package/lib/typescript/src/NativeMmkvPlatformContext.d.ts.map +1 -0
- package/lib/typescript/src/PlatformChecker.d.ts +2 -0
- package/lib/typescript/src/PlatformChecker.d.ts.map +1 -0
- package/lib/typescript/src/Types.d.ts +172 -0
- package/lib/typescript/src/Types.d.ts.map +1 -0
- package/lib/typescript/src/__tests__/hooks.test.d.ts +2 -0
- package/lib/typescript/src/__tests__/hooks.test.d.ts.map +1 -0
- package/lib/typescript/src/createMMKV.d.ts +3 -0
- package/lib/typescript/src/createMMKV.d.ts.map +1 -0
- package/lib/typescript/src/createMMKV.mock.d.ts +3 -0
- package/lib/typescript/src/createMMKV.mock.d.ts.map +1 -0
- package/lib/typescript/src/createMMKV.web.d.ts +3 -0
- package/lib/typescript/src/createMMKV.web.d.ts.map +1 -0
- package/lib/typescript/src/createTextEncoder.d.ts +2 -0
- package/lib/typescript/src/createTextEncoder.d.ts.map +1 -0
- package/lib/typescript/src/hooks.d.ts +86 -0
- package/lib/typescript/src/hooks.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +187 -0
- package/react-native-mmkv.podspec +38 -0
- package/react-native.config.js +20 -0
- package/src/MMKV.ts +142 -0
- package/src/MemoryWarningListener.ts +29 -0
- package/src/MemoryWarningListener.web.ts +5 -0
- package/src/ModuleNotFoundError.ts +95 -0
- package/src/NativeMmkv.ts +118 -0
- package/src/NativeMmkvPlatformContext.ts +38 -0
- package/src/PlatformChecker.ts +9 -0
- package/src/Types.ts +178 -0
- package/src/__tests__/hooks.test.tsx +89 -0
- package/src/createMMKV.mock.ts +38 -0
- package/src/createMMKV.ts +42 -0
- package/src/createMMKV.web.ts +127 -0
- package/src/createTextEncoder.ts +16 -0
- package/src/hooks.ts +247 -0
- package/src/index.ts +4 -0
|
@@ -0,0 +1,1243 @@
|
|
|
1
|
+
/* Copyright 2007-2018 The OpenSSL Project Authors. All Rights Reserved.
|
|
2
|
+
*
|
|
3
|
+
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
4
|
+
* this file except in compliance with the License. You can obtain a copy
|
|
5
|
+
* in the file LICENSE in the source distribution or at
|
|
6
|
+
* https://www.openssl.org/source/license.html
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* ====================================================================
|
|
10
|
+
* Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
|
|
11
|
+
* project. The module is, however, dual licensed under OpenSSL and
|
|
12
|
+
* CRYPTOGAMS licenses depending on where you obtain it. For further
|
|
13
|
+
* details see http://www.openssl.org/~appro/cryptogams/.
|
|
14
|
+
* ====================================================================
|
|
15
|
+
|
|
16
|
+
* AES for ARMv4
|
|
17
|
+
|
|
18
|
+
* January 2007.
|
|
19
|
+
*
|
|
20
|
+
* Code uses single 1K S-box and is >2 times faster than code generated
|
|
21
|
+
* by gcc-3.4.1. This is thanks to unique feature of ARMv4 ISA, which
|
|
22
|
+
* allows to merge logical or arithmetic operation with shift or rotate
|
|
23
|
+
* in one instruction and emit combined result every cycle. The module
|
|
24
|
+
* is endian-neutral. The performance is ~42 cycles/byte for 128-bit
|
|
25
|
+
* key [on single-issue Xscale PXA250 core].
|
|
26
|
+
|
|
27
|
+
* May 2007.
|
|
28
|
+
*
|
|
29
|
+
* AES_set_[en|de]crypt_key is added.
|
|
30
|
+
|
|
31
|
+
* July 2010.
|
|
32
|
+
*
|
|
33
|
+
* Rescheduling for dual-issue pipeline resulted in 12% improvement on
|
|
34
|
+
* Cortex A8 core and ~25 cycles per byte processed with 128-bit key.
|
|
35
|
+
|
|
36
|
+
* February 2011.
|
|
37
|
+
*
|
|
38
|
+
* Profiler-assisted and platform-specific optimization resulted in 16%
|
|
39
|
+
* improvement on Cortex A8 core and ~21.5 cycles per byte.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
#include "openssl_arm_arch.h"
|
|
43
|
+
#include "../../MMKVPredef.h"
|
|
44
|
+
|
|
45
|
+
#if (__ARM_MAX_ARCH__ <= 7) && (__ARM_MAX_ARCH__ > 0) && !defined(MMKV_DISABLE_CRYPT)
|
|
46
|
+
|
|
47
|
+
.text
|
|
48
|
+
#if defined(__thumb2__) && !defined(__APPLE__)
|
|
49
|
+
.syntax unified
|
|
50
|
+
.thumb
|
|
51
|
+
#else
|
|
52
|
+
.code 32
|
|
53
|
+
#undef __thumb2__
|
|
54
|
+
#endif
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
.align 5
|
|
58
|
+
AES_Te:
|
|
59
|
+
.word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d
|
|
60
|
+
.word 0xfff2f20d, 0xd66b6bbd, 0xde6f6fb1, 0x91c5c554
|
|
61
|
+
.word 0x60303050, 0x02010103, 0xce6767a9, 0x562b2b7d
|
|
62
|
+
.word 0xe7fefe19, 0xb5d7d762, 0x4dababe6, 0xec76769a
|
|
63
|
+
.word 0x8fcaca45, 0x1f82829d, 0x89c9c940, 0xfa7d7d87
|
|
64
|
+
.word 0xeffafa15, 0xb25959eb, 0x8e4747c9, 0xfbf0f00b
|
|
65
|
+
.word 0x41adadec, 0xb3d4d467, 0x5fa2a2fd, 0x45afafea
|
|
66
|
+
.word 0x239c9cbf, 0x53a4a4f7, 0xe4727296, 0x9bc0c05b
|
|
67
|
+
.word 0x75b7b7c2, 0xe1fdfd1c, 0x3d9393ae, 0x4c26266a
|
|
68
|
+
.word 0x6c36365a, 0x7e3f3f41, 0xf5f7f702, 0x83cccc4f
|
|
69
|
+
.word 0x6834345c, 0x51a5a5f4, 0xd1e5e534, 0xf9f1f108
|
|
70
|
+
.word 0xe2717193, 0xabd8d873, 0x62313153, 0x2a15153f
|
|
71
|
+
.word 0x0804040c, 0x95c7c752, 0x46232365, 0x9dc3c35e
|
|
72
|
+
.word 0x30181828, 0x379696a1, 0x0a05050f, 0x2f9a9ab5
|
|
73
|
+
.word 0x0e070709, 0x24121236, 0x1b80809b, 0xdfe2e23d
|
|
74
|
+
.word 0xcdebeb26, 0x4e272769, 0x7fb2b2cd, 0xea75759f
|
|
75
|
+
.word 0x1209091b, 0x1d83839e, 0x582c2c74, 0x341a1a2e
|
|
76
|
+
.word 0x361b1b2d, 0xdc6e6eb2, 0xb45a5aee, 0x5ba0a0fb
|
|
77
|
+
.word 0xa45252f6, 0x763b3b4d, 0xb7d6d661, 0x7db3b3ce
|
|
78
|
+
.word 0x5229297b, 0xdde3e33e, 0x5e2f2f71, 0x13848497
|
|
79
|
+
.word 0xa65353f5, 0xb9d1d168, 0x00000000, 0xc1eded2c
|
|
80
|
+
.word 0x40202060, 0xe3fcfc1f, 0x79b1b1c8, 0xb65b5bed
|
|
81
|
+
.word 0xd46a6abe, 0x8dcbcb46, 0x67bebed9, 0x7239394b
|
|
82
|
+
.word 0x944a4ade, 0x984c4cd4, 0xb05858e8, 0x85cfcf4a
|
|
83
|
+
.word 0xbbd0d06b, 0xc5efef2a, 0x4faaaae5, 0xedfbfb16
|
|
84
|
+
.word 0x864343c5, 0x9a4d4dd7, 0x66333355, 0x11858594
|
|
85
|
+
.word 0x8a4545cf, 0xe9f9f910, 0x04020206, 0xfe7f7f81
|
|
86
|
+
.word 0xa05050f0, 0x783c3c44, 0x259f9fba, 0x4ba8a8e3
|
|
87
|
+
.word 0xa25151f3, 0x5da3a3fe, 0x804040c0, 0x058f8f8a
|
|
88
|
+
.word 0x3f9292ad, 0x219d9dbc, 0x70383848, 0xf1f5f504
|
|
89
|
+
.word 0x63bcbcdf, 0x77b6b6c1, 0xafdada75, 0x42212163
|
|
90
|
+
.word 0x20101030, 0xe5ffff1a, 0xfdf3f30e, 0xbfd2d26d
|
|
91
|
+
.word 0x81cdcd4c, 0x180c0c14, 0x26131335, 0xc3ecec2f
|
|
92
|
+
.word 0xbe5f5fe1, 0x359797a2, 0x884444cc, 0x2e171739
|
|
93
|
+
.word 0x93c4c457, 0x55a7a7f2, 0xfc7e7e82, 0x7a3d3d47
|
|
94
|
+
.word 0xc86464ac, 0xba5d5de7, 0x3219192b, 0xe6737395
|
|
95
|
+
.word 0xc06060a0, 0x19818198, 0x9e4f4fd1, 0xa3dcdc7f
|
|
96
|
+
.word 0x44222266, 0x542a2a7e, 0x3b9090ab, 0x0b888883
|
|
97
|
+
.word 0x8c4646ca, 0xc7eeee29, 0x6bb8b8d3, 0x2814143c
|
|
98
|
+
.word 0xa7dede79, 0xbc5e5ee2, 0x160b0b1d, 0xaddbdb76
|
|
99
|
+
.word 0xdbe0e03b, 0x64323256, 0x743a3a4e, 0x140a0a1e
|
|
100
|
+
.word 0x924949db, 0x0c06060a, 0x4824246c, 0xb85c5ce4
|
|
101
|
+
.word 0x9fc2c25d, 0xbdd3d36e, 0x43acacef, 0xc46262a6
|
|
102
|
+
.word 0x399191a8, 0x319595a4, 0xd3e4e437, 0xf279798b
|
|
103
|
+
.word 0xd5e7e732, 0x8bc8c843, 0x6e373759, 0xda6d6db7
|
|
104
|
+
.word 0x018d8d8c, 0xb1d5d564, 0x9c4e4ed2, 0x49a9a9e0
|
|
105
|
+
.word 0xd86c6cb4, 0xac5656fa, 0xf3f4f407, 0xcfeaea25
|
|
106
|
+
.word 0xca6565af, 0xf47a7a8e, 0x47aeaee9, 0x10080818
|
|
107
|
+
.word 0x6fbabad5, 0xf0787888, 0x4a25256f, 0x5c2e2e72
|
|
108
|
+
.word 0x381c1c24, 0x57a6a6f1, 0x73b4b4c7, 0x97c6c651
|
|
109
|
+
.word 0xcbe8e823, 0xa1dddd7c, 0xe874749c, 0x3e1f1f21
|
|
110
|
+
.word 0x964b4bdd, 0x61bdbddc, 0x0d8b8b86, 0x0f8a8a85
|
|
111
|
+
.word 0xe0707090, 0x7c3e3e42, 0x71b5b5c4, 0xcc6666aa
|
|
112
|
+
.word 0x904848d8, 0x06030305, 0xf7f6f601, 0x1c0e0e12
|
|
113
|
+
.word 0xc26161a3, 0x6a35355f, 0xae5757f9, 0x69b9b9d0
|
|
114
|
+
.word 0x17868691, 0x99c1c158, 0x3a1d1d27, 0x279e9eb9
|
|
115
|
+
.word 0xd9e1e138, 0xebf8f813, 0x2b9898b3, 0x22111133
|
|
116
|
+
.word 0xd26969bb, 0xa9d9d970, 0x078e8e89, 0x339494a7
|
|
117
|
+
.word 0x2d9b9bb6, 0x3c1e1e22, 0x15878792, 0xc9e9e920
|
|
118
|
+
.word 0x87cece49, 0xaa5555ff, 0x50282878, 0xa5dfdf7a
|
|
119
|
+
.word 0x038c8c8f, 0x59a1a1f8, 0x09898980, 0x1a0d0d17
|
|
120
|
+
.word 0x65bfbfda, 0xd7e6e631, 0x844242c6, 0xd06868b8
|
|
121
|
+
.word 0x824141c3, 0x299999b0, 0x5a2d2d77, 0x1e0f0f11
|
|
122
|
+
.word 0x7bb0b0cb, 0xa85454fc, 0x6dbbbbd6, 0x2c16163a
|
|
123
|
+
// Te4[256]
|
|
124
|
+
.byte 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5
|
|
125
|
+
.byte 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76
|
|
126
|
+
.byte 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0
|
|
127
|
+
.byte 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0
|
|
128
|
+
.byte 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc
|
|
129
|
+
.byte 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15
|
|
130
|
+
.byte 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a
|
|
131
|
+
.byte 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75
|
|
132
|
+
.byte 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0
|
|
133
|
+
.byte 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84
|
|
134
|
+
.byte 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b
|
|
135
|
+
.byte 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf
|
|
136
|
+
.byte 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85
|
|
137
|
+
.byte 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8
|
|
138
|
+
.byte 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5
|
|
139
|
+
.byte 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2
|
|
140
|
+
.byte 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17
|
|
141
|
+
.byte 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73
|
|
142
|
+
.byte 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88
|
|
143
|
+
.byte 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb
|
|
144
|
+
.byte 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c
|
|
145
|
+
.byte 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79
|
|
146
|
+
.byte 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9
|
|
147
|
+
.byte 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08
|
|
148
|
+
.byte 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6
|
|
149
|
+
.byte 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a
|
|
150
|
+
.byte 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e
|
|
151
|
+
.byte 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e
|
|
152
|
+
.byte 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94
|
|
153
|
+
.byte 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf
|
|
154
|
+
.byte 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68
|
|
155
|
+
.byte 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16
|
|
156
|
+
// rcon[]
|
|
157
|
+
.word 0x01000000, 0x02000000, 0x04000000, 0x08000000
|
|
158
|
+
.word 0x10000000, 0x20000000, 0x40000000, 0x80000000
|
|
159
|
+
.word 0x1B000000, 0x36000000, 0, 0, 0, 0, 0, 0
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
/* void openssl_aes_arm_encrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key) {
|
|
163
|
+
*/
|
|
164
|
+
#ifndef __APPLE__
|
|
165
|
+
.type openssl_aes_arm_encrypt, %function
|
|
166
|
+
#endif
|
|
167
|
+
#ifndef __linux__
|
|
168
|
+
.globl _openssl_aes_arm_encrypt
|
|
169
|
+
#ifdef __thumb2__
|
|
170
|
+
.thumb_func _openssl_aes_arm_encrypt
|
|
171
|
+
#endif
|
|
172
|
+
.align 5
|
|
173
|
+
_openssl_aes_arm_encrypt:
|
|
174
|
+
#else
|
|
175
|
+
.globl openssl_aes_arm_encrypt
|
|
176
|
+
.align 5
|
|
177
|
+
openssl_aes_arm_encrypt:
|
|
178
|
+
#endif
|
|
179
|
+
#ifndef __thumb2__
|
|
180
|
+
sub r3,pc,#8 // _AES_encrypt
|
|
181
|
+
#else
|
|
182
|
+
adr r3,.
|
|
183
|
+
#endif
|
|
184
|
+
stmdb sp!,{r1,r4-r12,lr}
|
|
185
|
+
#if defined(__thumb2__) || defined(__APPLE__)
|
|
186
|
+
adr r10,AES_Te
|
|
187
|
+
#elif defined(__linux__)
|
|
188
|
+
sub r10,r3,#openssl_aes_arm_encrypt-AES_Te // Te
|
|
189
|
+
#else
|
|
190
|
+
sub r10,r3,#_openssl_aes_arm_encrypt-AES_Te // Te
|
|
191
|
+
#endif
|
|
192
|
+
mov r12,r0 // inp
|
|
193
|
+
mov r11,r2
|
|
194
|
+
#if __ARM_ARCH__<7
|
|
195
|
+
ldrb r0,[r12,#3] // load input data in endian-neutral
|
|
196
|
+
ldrb r4,[r12,#2] // manner...
|
|
197
|
+
ldrb r5,[r12,#1]
|
|
198
|
+
ldrb r6,[r12,#0]
|
|
199
|
+
orr r0,r0,r4,lsl#8
|
|
200
|
+
ldrb r1,[r12,#7]
|
|
201
|
+
orr r0,r0,r5,lsl#16
|
|
202
|
+
ldrb r4,[r12,#6]
|
|
203
|
+
orr r0,r0,r6,lsl#24
|
|
204
|
+
ldrb r5,[r12,#5]
|
|
205
|
+
ldrb r6,[r12,#4]
|
|
206
|
+
orr r1,r1,r4,lsl#8
|
|
207
|
+
ldrb r2,[r12,#11]
|
|
208
|
+
orr r1,r1,r5,lsl#16
|
|
209
|
+
ldrb r4,[r12,#10]
|
|
210
|
+
orr r1,r1,r6,lsl#24
|
|
211
|
+
ldrb r5,[r12,#9]
|
|
212
|
+
ldrb r6,[r12,#8]
|
|
213
|
+
orr r2,r2,r4,lsl#8
|
|
214
|
+
ldrb r3,[r12,#15]
|
|
215
|
+
orr r2,r2,r5,lsl#16
|
|
216
|
+
ldrb r4,[r12,#14]
|
|
217
|
+
orr r2,r2,r6,lsl#24
|
|
218
|
+
ldrb r5,[r12,#13]
|
|
219
|
+
ldrb r6,[r12,#12]
|
|
220
|
+
orr r3,r3,r4,lsl#8
|
|
221
|
+
orr r3,r3,r5,lsl#16
|
|
222
|
+
orr r3,r3,r6,lsl#24
|
|
223
|
+
#else
|
|
224
|
+
ldr r0,[r12,#0]
|
|
225
|
+
ldr r1,[r12,#4]
|
|
226
|
+
ldr r2,[r12,#8]
|
|
227
|
+
ldr r3,[r12,#12]
|
|
228
|
+
#ifdef __ARMEL__
|
|
229
|
+
rev r0,r0
|
|
230
|
+
rev r1,r1
|
|
231
|
+
rev r2,r2
|
|
232
|
+
rev r3,r3
|
|
233
|
+
#endif
|
|
234
|
+
#endif
|
|
235
|
+
bl _armv4_AES_encrypt
|
|
236
|
+
|
|
237
|
+
ldr r12,[sp],#4 // pop out
|
|
238
|
+
#if __ARM_ARCH__>=7
|
|
239
|
+
#ifdef __ARMEL__
|
|
240
|
+
rev r0,r0
|
|
241
|
+
rev r1,r1
|
|
242
|
+
rev r2,r2
|
|
243
|
+
rev r3,r3
|
|
244
|
+
#endif
|
|
245
|
+
str r0,[r12,#0]
|
|
246
|
+
str r1,[r12,#4]
|
|
247
|
+
str r2,[r12,#8]
|
|
248
|
+
str r3,[r12,#12]
|
|
249
|
+
#else
|
|
250
|
+
mov r4,r0,lsr#24 // write output in endian-neutral
|
|
251
|
+
mov r5,r0,lsr#16 // manner...
|
|
252
|
+
mov r6,r0,lsr#8
|
|
253
|
+
strb r4,[r12,#0]
|
|
254
|
+
strb r5,[r12,#1]
|
|
255
|
+
mov r4,r1,lsr#24
|
|
256
|
+
strb r6,[r12,#2]
|
|
257
|
+
mov r5,r1,lsr#16
|
|
258
|
+
strb r0,[r12,#3]
|
|
259
|
+
mov r6,r1,lsr#8
|
|
260
|
+
strb r4,[r12,#4]
|
|
261
|
+
strb r5,[r12,#5]
|
|
262
|
+
mov r4,r2,lsr#24
|
|
263
|
+
strb r6,[r12,#6]
|
|
264
|
+
mov r5,r2,lsr#16
|
|
265
|
+
strb r1,[r12,#7]
|
|
266
|
+
mov r6,r2,lsr#8
|
|
267
|
+
strb r4,[r12,#8]
|
|
268
|
+
strb r5,[r12,#9]
|
|
269
|
+
mov r4,r3,lsr#24
|
|
270
|
+
strb r6,[r12,#10]
|
|
271
|
+
mov r5,r3,lsr#16
|
|
272
|
+
strb r2,[r12,#11]
|
|
273
|
+
mov r6,r3,lsr#8
|
|
274
|
+
strb r4,[r12,#12]
|
|
275
|
+
strb r5,[r12,#13]
|
|
276
|
+
strb r6,[r12,#14]
|
|
277
|
+
strb r3,[r12,#15]
|
|
278
|
+
#endif
|
|
279
|
+
#if __ARM_ARCH__>=5
|
|
280
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,pc}
|
|
281
|
+
#else
|
|
282
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
283
|
+
tst lr,#1
|
|
284
|
+
moveq pc,lr // be binary compatible with V4, yet
|
|
285
|
+
.word 0xe12fff1e // interoperable with Thumb ISA:-)
|
|
286
|
+
#endif
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
#if defined(__thumb2__) && !defined(__linux__)
|
|
290
|
+
.thumb_func _armv4_AES_encrypt
|
|
291
|
+
#endif
|
|
292
|
+
.align 2
|
|
293
|
+
_armv4_AES_encrypt:
|
|
294
|
+
str lr,[sp,#-4]! // push lr
|
|
295
|
+
ldmia r11!,{r4,r5,r6,r7}
|
|
296
|
+
eor r0,r0,r4
|
|
297
|
+
ldr r12,[r11,#240-16]
|
|
298
|
+
eor r1,r1,r5
|
|
299
|
+
eor r2,r2,r6
|
|
300
|
+
eor r3,r3,r7
|
|
301
|
+
sub r12,r12,#1
|
|
302
|
+
mov lr,#255
|
|
303
|
+
|
|
304
|
+
and r7,lr,r0
|
|
305
|
+
and r8,lr,r0,lsr#8
|
|
306
|
+
and r9,lr,r0,lsr#16
|
|
307
|
+
mov r0,r0,lsr#24
|
|
308
|
+
Lenc_loop:
|
|
309
|
+
ldr r4,[r10,r7,lsl#2] // Te3[s0>>0]
|
|
310
|
+
and r7,lr,r1,lsr#16 // i0
|
|
311
|
+
ldr r5,[r10,r8,lsl#2] // Te2[s0>>8]
|
|
312
|
+
and r8,lr,r1
|
|
313
|
+
ldr r6,[r10,r9,lsl#2] // Te1[s0>>16]
|
|
314
|
+
and r9,lr,r1,lsr#8
|
|
315
|
+
ldr r0,[r10,r0,lsl#2] // Te0[s0>>24]
|
|
316
|
+
mov r1,r1,lsr#24
|
|
317
|
+
|
|
318
|
+
ldr r7,[r10,r7,lsl#2] // Te1[s1>>16]
|
|
319
|
+
ldr r8,[r10,r8,lsl#2] // Te3[s1>>0]
|
|
320
|
+
ldr r9,[r10,r9,lsl#2] // Te2[s1>>8]
|
|
321
|
+
eor r0,r0,r7,ror#8
|
|
322
|
+
ldr r1,[r10,r1,lsl#2] // Te0[s1>>24]
|
|
323
|
+
and r7,lr,r2,lsr#8 // i0
|
|
324
|
+
eor r5,r5,r8,ror#8
|
|
325
|
+
and r8,lr,r2,lsr#16 // i1
|
|
326
|
+
eor r6,r6,r9,ror#8
|
|
327
|
+
and r9,lr,r2
|
|
328
|
+
ldr r7,[r10,r7,lsl#2] // Te2[s2>>8]
|
|
329
|
+
eor r1,r1,r4,ror#24
|
|
330
|
+
ldr r8,[r10,r8,lsl#2] // Te1[s2>>16]
|
|
331
|
+
mov r2,r2,lsr#24
|
|
332
|
+
|
|
333
|
+
ldr r9,[r10,r9,lsl#2] // Te3[s2>>0]
|
|
334
|
+
eor r0,r0,r7,ror#16
|
|
335
|
+
ldr r2,[r10,r2,lsl#2] // Te0[s2>>24]
|
|
336
|
+
and r7,lr,r3 // i0
|
|
337
|
+
eor r1,r1,r8,ror#8
|
|
338
|
+
and r8,lr,r3,lsr#8 // i1
|
|
339
|
+
eor r6,r6,r9,ror#16
|
|
340
|
+
and r9,lr,r3,lsr#16 // i2
|
|
341
|
+
ldr r7,[r10,r7,lsl#2] // Te3[s3>>0]
|
|
342
|
+
eor r2,r2,r5,ror#16
|
|
343
|
+
ldr r8,[r10,r8,lsl#2] // Te2[s3>>8]
|
|
344
|
+
mov r3,r3,lsr#24
|
|
345
|
+
|
|
346
|
+
ldr r9,[r10,r9,lsl#2] // Te1[s3>>16]
|
|
347
|
+
eor r0,r0,r7,ror#24
|
|
348
|
+
ldr r7,[r11],#16
|
|
349
|
+
eor r1,r1,r8,ror#16
|
|
350
|
+
ldr r3,[r10,r3,lsl#2] // Te0[s3>>24]
|
|
351
|
+
eor r2,r2,r9,ror#8
|
|
352
|
+
ldr r4,[r11,#-12]
|
|
353
|
+
eor r3,r3,r6,ror#8
|
|
354
|
+
|
|
355
|
+
ldr r5,[r11,#-8]
|
|
356
|
+
eor r0,r0,r7
|
|
357
|
+
ldr r6,[r11,#-4]
|
|
358
|
+
and r7,lr,r0
|
|
359
|
+
eor r1,r1,r4
|
|
360
|
+
and r8,lr,r0,lsr#8
|
|
361
|
+
eor r2,r2,r5
|
|
362
|
+
and r9,lr,r0,lsr#16
|
|
363
|
+
eor r3,r3,r6
|
|
364
|
+
mov r0,r0,lsr#24
|
|
365
|
+
|
|
366
|
+
subs r12,r12,#1
|
|
367
|
+
bne Lenc_loop
|
|
368
|
+
|
|
369
|
+
add r10,r10,#2
|
|
370
|
+
|
|
371
|
+
ldrb r4,[r10,r7,lsl#2] // Te4[s0>>0]
|
|
372
|
+
and r7,lr,r1,lsr#16 // i0
|
|
373
|
+
ldrb r5,[r10,r8,lsl#2] // Te4[s0>>8]
|
|
374
|
+
and r8,lr,r1
|
|
375
|
+
ldrb r6,[r10,r9,lsl#2] // Te4[s0>>16]
|
|
376
|
+
and r9,lr,r1,lsr#8
|
|
377
|
+
ldrb r0,[r10,r0,lsl#2] // Te4[s0>>24]
|
|
378
|
+
mov r1,r1,lsr#24
|
|
379
|
+
|
|
380
|
+
ldrb r7,[r10,r7,lsl#2] // Te4[s1>>16]
|
|
381
|
+
ldrb r8,[r10,r8,lsl#2] // Te4[s1>>0]
|
|
382
|
+
ldrb r9,[r10,r9,lsl#2] // Te4[s1>>8]
|
|
383
|
+
eor r0,r7,r0,lsl#8
|
|
384
|
+
ldrb r1,[r10,r1,lsl#2] // Te4[s1>>24]
|
|
385
|
+
and r7,lr,r2,lsr#8 // i0
|
|
386
|
+
eor r5,r8,r5,lsl#8
|
|
387
|
+
and r8,lr,r2,lsr#16 // i1
|
|
388
|
+
eor r6,r9,r6,lsl#8
|
|
389
|
+
and r9,lr,r2
|
|
390
|
+
ldrb r7,[r10,r7,lsl#2] // Te4[s2>>8]
|
|
391
|
+
eor r1,r4,r1,lsl#24
|
|
392
|
+
ldrb r8,[r10,r8,lsl#2] // Te4[s2>>16]
|
|
393
|
+
mov r2,r2,lsr#24
|
|
394
|
+
|
|
395
|
+
ldrb r9,[r10,r9,lsl#2] // Te4[s2>>0]
|
|
396
|
+
eor r0,r7,r0,lsl#8
|
|
397
|
+
ldrb r2,[r10,r2,lsl#2] // Te4[s2>>24]
|
|
398
|
+
and r7,lr,r3 // i0
|
|
399
|
+
eor r1,r1,r8,lsl#16
|
|
400
|
+
and r8,lr,r3,lsr#8 // i1
|
|
401
|
+
eor r6,r9,r6,lsl#8
|
|
402
|
+
and r9,lr,r3,lsr#16 // i2
|
|
403
|
+
ldrb r7,[r10,r7,lsl#2] // Te4[s3>>0]
|
|
404
|
+
eor r2,r5,r2,lsl#24
|
|
405
|
+
ldrb r8,[r10,r8,lsl#2] // Te4[s3>>8]
|
|
406
|
+
mov r3,r3,lsr#24
|
|
407
|
+
|
|
408
|
+
ldrb r9,[r10,r9,lsl#2] // Te4[s3>>16]
|
|
409
|
+
eor r0,r7,r0,lsl#8
|
|
410
|
+
ldr r7,[r11,#0]
|
|
411
|
+
ldrb r3,[r10,r3,lsl#2] // Te4[s3>>24]
|
|
412
|
+
eor r1,r1,r8,lsl#8
|
|
413
|
+
ldr r4,[r11,#4]
|
|
414
|
+
eor r2,r2,r9,lsl#16
|
|
415
|
+
ldr r5,[r11,#8]
|
|
416
|
+
eor r3,r6,r3,lsl#24
|
|
417
|
+
ldr r6,[r11,#12]
|
|
418
|
+
|
|
419
|
+
eor r0,r0,r7
|
|
420
|
+
eor r1,r1,r4
|
|
421
|
+
eor r2,r2,r5
|
|
422
|
+
eor r3,r3,r6
|
|
423
|
+
|
|
424
|
+
sub r10,r10,#2
|
|
425
|
+
ldr pc,[sp],#4 // pop and return
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
#ifndef __APPLE__
|
|
429
|
+
.type openssl_aes_arm_set_encrypt_key, %function
|
|
430
|
+
#endif
|
|
431
|
+
#ifndef __linux__
|
|
432
|
+
.globl _openssl_aes_arm_set_encrypt_key
|
|
433
|
+
#ifdef __thumb2__
|
|
434
|
+
.thumb_func _openssl_aes_arm_set_encrypt_key
|
|
435
|
+
#endif
|
|
436
|
+
.align 5
|
|
437
|
+
_openssl_aes_arm_set_encrypt_key:
|
|
438
|
+
#else
|
|
439
|
+
.globl openssl_aes_arm_set_encrypt_key
|
|
440
|
+
.align 5
|
|
441
|
+
openssl_aes_arm_set_encrypt_key:
|
|
442
|
+
#endif
|
|
443
|
+
_armv4_AES_set_encrypt_key:
|
|
444
|
+
#ifndef __thumb2__
|
|
445
|
+
sub r3,pc,#8 // _AES_set_encrypt_key
|
|
446
|
+
#else
|
|
447
|
+
adr r3,.
|
|
448
|
+
#endif
|
|
449
|
+
teq r0,#0
|
|
450
|
+
#ifdef __thumb2__
|
|
451
|
+
itt eq // Thumb2 thing, sanity check in ARM
|
|
452
|
+
#endif
|
|
453
|
+
moveq r0,#-1
|
|
454
|
+
beq Labrt
|
|
455
|
+
teq r2,#0
|
|
456
|
+
#ifdef __thumb2__
|
|
457
|
+
itt eq // Thumb2 thing, sanity check in ARM
|
|
458
|
+
#endif
|
|
459
|
+
moveq r0,#-1
|
|
460
|
+
beq Labrt
|
|
461
|
+
|
|
462
|
+
teq r1,#128
|
|
463
|
+
beq Lok
|
|
464
|
+
teq r1,#192
|
|
465
|
+
beq Lok
|
|
466
|
+
teq r1,#256
|
|
467
|
+
#ifdef __thumb2__
|
|
468
|
+
itt ne // Thumb2 thing, sanity check in ARM
|
|
469
|
+
#endif
|
|
470
|
+
movne r0,#-1
|
|
471
|
+
bne Labrt
|
|
472
|
+
|
|
473
|
+
Lok: stmdb sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
474
|
+
mov r12,r0 // inp
|
|
475
|
+
mov lr,r1 // bits
|
|
476
|
+
mov r11,r2 // key
|
|
477
|
+
|
|
478
|
+
#if defined(__thumb2__) || defined(__APPLE__)
|
|
479
|
+
adr r10,AES_Te+1024 // Te4
|
|
480
|
+
#else
|
|
481
|
+
sub r10,r3,#_armv4_AES_set_encrypt_key-AES_Te-1024 // Te4
|
|
482
|
+
#endif
|
|
483
|
+
|
|
484
|
+
#if __ARM_ARCH__<7
|
|
485
|
+
ldrb r0,[r12,#3] // load input data in endian-neutral
|
|
486
|
+
ldrb r4,[r12,#2] // manner...
|
|
487
|
+
ldrb r5,[r12,#1]
|
|
488
|
+
ldrb r6,[r12,#0]
|
|
489
|
+
orr r0,r0,r4,lsl#8
|
|
490
|
+
ldrb r1,[r12,#7]
|
|
491
|
+
orr r0,r0,r5,lsl#16
|
|
492
|
+
ldrb r4,[r12,#6]
|
|
493
|
+
orr r0,r0,r6,lsl#24
|
|
494
|
+
ldrb r5,[r12,#5]
|
|
495
|
+
ldrb r6,[r12,#4]
|
|
496
|
+
orr r1,r1,r4,lsl#8
|
|
497
|
+
ldrb r2,[r12,#11]
|
|
498
|
+
orr r1,r1,r5,lsl#16
|
|
499
|
+
ldrb r4,[r12,#10]
|
|
500
|
+
orr r1,r1,r6,lsl#24
|
|
501
|
+
ldrb r5,[r12,#9]
|
|
502
|
+
ldrb r6,[r12,#8]
|
|
503
|
+
orr r2,r2,r4,lsl#8
|
|
504
|
+
ldrb r3,[r12,#15]
|
|
505
|
+
orr r2,r2,r5,lsl#16
|
|
506
|
+
ldrb r4,[r12,#14]
|
|
507
|
+
orr r2,r2,r6,lsl#24
|
|
508
|
+
ldrb r5,[r12,#13]
|
|
509
|
+
ldrb r6,[r12,#12]
|
|
510
|
+
orr r3,r3,r4,lsl#8
|
|
511
|
+
str r0,[r11],#16
|
|
512
|
+
orr r3,r3,r5,lsl#16
|
|
513
|
+
str r1,[r11,#-12]
|
|
514
|
+
orr r3,r3,r6,lsl#24
|
|
515
|
+
str r2,[r11,#-8]
|
|
516
|
+
str r3,[r11,#-4]
|
|
517
|
+
#else
|
|
518
|
+
ldr r0,[r12,#0]
|
|
519
|
+
ldr r1,[r12,#4]
|
|
520
|
+
ldr r2,[r12,#8]
|
|
521
|
+
ldr r3,[r12,#12]
|
|
522
|
+
#ifdef __ARMEL__
|
|
523
|
+
rev r0,r0
|
|
524
|
+
rev r1,r1
|
|
525
|
+
rev r2,r2
|
|
526
|
+
rev r3,r3
|
|
527
|
+
#endif
|
|
528
|
+
str r0,[r11],#16
|
|
529
|
+
str r1,[r11,#-12]
|
|
530
|
+
str r2,[r11,#-8]
|
|
531
|
+
str r3,[r11,#-4]
|
|
532
|
+
#endif
|
|
533
|
+
|
|
534
|
+
teq lr,#128
|
|
535
|
+
bne Lnot128
|
|
536
|
+
mov r12,#10
|
|
537
|
+
str r12,[r11,#240-16]
|
|
538
|
+
add r6,r10,#256 // rcon
|
|
539
|
+
mov lr,#255
|
|
540
|
+
|
|
541
|
+
L128_loop:
|
|
542
|
+
and r5,lr,r3,lsr#24
|
|
543
|
+
and r7,lr,r3,lsr#16
|
|
544
|
+
ldrb r5,[r10,r5]
|
|
545
|
+
and r8,lr,r3,lsr#8
|
|
546
|
+
ldrb r7,[r10,r7]
|
|
547
|
+
and r9,lr,r3
|
|
548
|
+
ldrb r8,[r10,r8]
|
|
549
|
+
orr r5,r5,r7,lsl#24
|
|
550
|
+
ldrb r9,[r10,r9]
|
|
551
|
+
orr r5,r5,r8,lsl#16
|
|
552
|
+
ldr r4,[r6],#4 // rcon[i++]
|
|
553
|
+
orr r5,r5,r9,lsl#8
|
|
554
|
+
eor r5,r5,r4
|
|
555
|
+
eor r0,r0,r5 // rk[4]=rk[0]^...
|
|
556
|
+
eor r1,r1,r0 // rk[5]=rk[1]^rk[4]
|
|
557
|
+
str r0,[r11],#16
|
|
558
|
+
eor r2,r2,r1 // rk[6]=rk[2]^rk[5]
|
|
559
|
+
str r1,[r11,#-12]
|
|
560
|
+
eor r3,r3,r2 // rk[7]=rk[3]^rk[6]
|
|
561
|
+
str r2,[r11,#-8]
|
|
562
|
+
subs r12,r12,#1
|
|
563
|
+
str r3,[r11,#-4]
|
|
564
|
+
bne L128_loop
|
|
565
|
+
sub r2,r11,#176
|
|
566
|
+
b Ldone
|
|
567
|
+
|
|
568
|
+
Lnot128:
|
|
569
|
+
#if __ARM_ARCH__<7
|
|
570
|
+
ldrb r8,[r12,#19]
|
|
571
|
+
ldrb r4,[r12,#18]
|
|
572
|
+
ldrb r5,[r12,#17]
|
|
573
|
+
ldrb r6,[r12,#16]
|
|
574
|
+
orr r8,r8,r4,lsl#8
|
|
575
|
+
ldrb r9,[r12,#23]
|
|
576
|
+
orr r8,r8,r5,lsl#16
|
|
577
|
+
ldrb r4,[r12,#22]
|
|
578
|
+
orr r8,r8,r6,lsl#24
|
|
579
|
+
ldrb r5,[r12,#21]
|
|
580
|
+
ldrb r6,[r12,#20]
|
|
581
|
+
orr r9,r9,r4,lsl#8
|
|
582
|
+
orr r9,r9,r5,lsl#16
|
|
583
|
+
str r8,[r11],#8
|
|
584
|
+
orr r9,r9,r6,lsl#24
|
|
585
|
+
str r9,[r11,#-4]
|
|
586
|
+
#else
|
|
587
|
+
ldr r8,[r12,#16]
|
|
588
|
+
ldr r9,[r12,#20]
|
|
589
|
+
#ifdef __ARMEL__
|
|
590
|
+
rev r8,r8
|
|
591
|
+
rev r9,r9
|
|
592
|
+
#endif
|
|
593
|
+
str r8,[r11],#8
|
|
594
|
+
str r9,[r11,#-4]
|
|
595
|
+
#endif
|
|
596
|
+
|
|
597
|
+
teq lr,#192
|
|
598
|
+
bne Lnot192
|
|
599
|
+
mov r12,#12
|
|
600
|
+
str r12,[r11,#240-24]
|
|
601
|
+
add r6,r10,#256 // rcon
|
|
602
|
+
mov lr,#255
|
|
603
|
+
mov r12,#8
|
|
604
|
+
|
|
605
|
+
L192_loop:
|
|
606
|
+
and r5,lr,r9,lsr#24
|
|
607
|
+
and r7,lr,r9,lsr#16
|
|
608
|
+
ldrb r5,[r10,r5]
|
|
609
|
+
and r8,lr,r9,lsr#8
|
|
610
|
+
ldrb r7,[r10,r7]
|
|
611
|
+
and r9,lr,r9
|
|
612
|
+
ldrb r8,[r10,r8]
|
|
613
|
+
orr r5,r5,r7,lsl#24
|
|
614
|
+
ldrb r9,[r10,r9]
|
|
615
|
+
orr r5,r5,r8,lsl#16
|
|
616
|
+
ldr r4,[r6],#4 // rcon[i++]
|
|
617
|
+
orr r5,r5,r9,lsl#8
|
|
618
|
+
eor r9,r5,r4
|
|
619
|
+
eor r0,r0,r9 // rk[6]=rk[0]^...
|
|
620
|
+
eor r1,r1,r0 // rk[7]=rk[1]^rk[6]
|
|
621
|
+
str r0,[r11],#24
|
|
622
|
+
eor r2,r2,r1 // rk[8]=rk[2]^rk[7]
|
|
623
|
+
str r1,[r11,#-20]
|
|
624
|
+
eor r3,r3,r2 // rk[9]=rk[3]^rk[8]
|
|
625
|
+
str r2,[r11,#-16]
|
|
626
|
+
subs r12,r12,#1
|
|
627
|
+
str r3,[r11,#-12]
|
|
628
|
+
#ifdef __thumb2__
|
|
629
|
+
itt eq // Thumb2 thing, sanity check in ARM
|
|
630
|
+
#endif
|
|
631
|
+
subeq r2,r11,#216
|
|
632
|
+
beq Ldone
|
|
633
|
+
|
|
634
|
+
ldr r7,[r11,#-32]
|
|
635
|
+
ldr r8,[r11,#-28]
|
|
636
|
+
eor r7,r7,r3 // rk[10]=rk[4]^rk[9]
|
|
637
|
+
eor r9,r8,r7 // rk[11]=rk[5]^rk[10]
|
|
638
|
+
str r7,[r11,#-8]
|
|
639
|
+
str r9,[r11,#-4]
|
|
640
|
+
b L192_loop
|
|
641
|
+
|
|
642
|
+
Lnot192:
|
|
643
|
+
#if __ARM_ARCH__<7
|
|
644
|
+
ldrb r8,[r12,#27]
|
|
645
|
+
ldrb r4,[r12,#26]
|
|
646
|
+
ldrb r5,[r12,#25]
|
|
647
|
+
ldrb r6,[r12,#24]
|
|
648
|
+
orr r8,r8,r4,lsl#8
|
|
649
|
+
ldrb r9,[r12,#31]
|
|
650
|
+
orr r8,r8,r5,lsl#16
|
|
651
|
+
ldrb r4,[r12,#30]
|
|
652
|
+
orr r8,r8,r6,lsl#24
|
|
653
|
+
ldrb r5,[r12,#29]
|
|
654
|
+
ldrb r6,[r12,#28]
|
|
655
|
+
orr r9,r9,r4,lsl#8
|
|
656
|
+
orr r9,r9,r5,lsl#16
|
|
657
|
+
str r8,[r11],#8
|
|
658
|
+
orr r9,r9,r6,lsl#24
|
|
659
|
+
str r9,[r11,#-4]
|
|
660
|
+
#else
|
|
661
|
+
ldr r8,[r12,#24]
|
|
662
|
+
ldr r9,[r12,#28]
|
|
663
|
+
#ifdef __ARMEL__
|
|
664
|
+
rev r8,r8
|
|
665
|
+
rev r9,r9
|
|
666
|
+
#endif
|
|
667
|
+
str r8,[r11],#8
|
|
668
|
+
str r9,[r11,#-4]
|
|
669
|
+
#endif
|
|
670
|
+
|
|
671
|
+
mov r12,#14
|
|
672
|
+
str r12,[r11,#240-32]
|
|
673
|
+
add r6,r10,#256 // rcon
|
|
674
|
+
mov lr,#255
|
|
675
|
+
mov r12,#7
|
|
676
|
+
|
|
677
|
+
L256_loop:
|
|
678
|
+
and r5,lr,r9,lsr#24
|
|
679
|
+
and r7,lr,r9,lsr#16
|
|
680
|
+
ldrb r5,[r10,r5]
|
|
681
|
+
and r8,lr,r9,lsr#8
|
|
682
|
+
ldrb r7,[r10,r7]
|
|
683
|
+
and r9,lr,r9
|
|
684
|
+
ldrb r8,[r10,r8]
|
|
685
|
+
orr r5,r5,r7,lsl#24
|
|
686
|
+
ldrb r9,[r10,r9]
|
|
687
|
+
orr r5,r5,r8,lsl#16
|
|
688
|
+
ldr r4,[r6],#4 // rcon[i++]
|
|
689
|
+
orr r5,r5,r9,lsl#8
|
|
690
|
+
eor r9,r5,r4
|
|
691
|
+
eor r0,r0,r9 // rk[8]=rk[0]^...
|
|
692
|
+
eor r1,r1,r0 // rk[9]=rk[1]^rk[8]
|
|
693
|
+
str r0,[r11],#32
|
|
694
|
+
eor r2,r2,r1 // rk[10]=rk[2]^rk[9]
|
|
695
|
+
str r1,[r11,#-28]
|
|
696
|
+
eor r3,r3,r2 // rk[11]=rk[3]^rk[10]
|
|
697
|
+
str r2,[r11,#-24]
|
|
698
|
+
subs r12,r12,#1
|
|
699
|
+
str r3,[r11,#-20]
|
|
700
|
+
#ifdef __thumb2__
|
|
701
|
+
itt eq // Thumb2 thing, sanity check in ARM
|
|
702
|
+
#endif
|
|
703
|
+
subeq r2,r11,#256
|
|
704
|
+
beq Ldone
|
|
705
|
+
|
|
706
|
+
and r5,lr,r3
|
|
707
|
+
and r7,lr,r3,lsr#8
|
|
708
|
+
ldrb r5,[r10,r5]
|
|
709
|
+
and r8,lr,r3,lsr#16
|
|
710
|
+
ldrb r7,[r10,r7]
|
|
711
|
+
and r9,lr,r3,lsr#24
|
|
712
|
+
ldrb r8,[r10,r8]
|
|
713
|
+
orr r5,r5,r7,lsl#8
|
|
714
|
+
ldrb r9,[r10,r9]
|
|
715
|
+
orr r5,r5,r8,lsl#16
|
|
716
|
+
ldr r4,[r11,#-48]
|
|
717
|
+
orr r5,r5,r9,lsl#24
|
|
718
|
+
|
|
719
|
+
ldr r7,[r11,#-44]
|
|
720
|
+
ldr r8,[r11,#-40]
|
|
721
|
+
eor r4,r4,r5 // rk[12]=rk[4]^...
|
|
722
|
+
ldr r9,[r11,#-36]
|
|
723
|
+
eor r7,r7,r4 // rk[13]=rk[5]^rk[12]
|
|
724
|
+
str r4,[r11,#-16]
|
|
725
|
+
eor r8,r8,r7 // rk[14]=rk[6]^rk[13]
|
|
726
|
+
str r7,[r11,#-12]
|
|
727
|
+
eor r9,r9,r8 // rk[15]=rk[7]^rk[14]
|
|
728
|
+
str r8,[r11,#-8]
|
|
729
|
+
str r9,[r11,#-4]
|
|
730
|
+
b L256_loop
|
|
731
|
+
|
|
732
|
+
.align 2
|
|
733
|
+
Ldone: mov r0,#0
|
|
734
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
735
|
+
Labrt:
|
|
736
|
+
#if __ARM_ARCH__>=5
|
|
737
|
+
bx lr // .word 0xe12fff1e
|
|
738
|
+
#else
|
|
739
|
+
tst lr,#1
|
|
740
|
+
moveq pc,lr // be binary compatible with V4, yet
|
|
741
|
+
.word 0xe12fff1e // interoperable with Thumb ISA:-)
|
|
742
|
+
#endif
|
|
743
|
+
|
|
744
|
+
#ifndef __APPLE__
|
|
745
|
+
.type openssl_aes_arm_set_decrypt_key, %function
|
|
746
|
+
#endif
|
|
747
|
+
#ifndef __linux__
|
|
748
|
+
.globl _openssl_aes_arm_set_decrypt_key
|
|
749
|
+
#ifdef __thumb2__
|
|
750
|
+
.thumb_func _openssl_aes_arm_set_decrypt_key
|
|
751
|
+
#endif
|
|
752
|
+
.align 5
|
|
753
|
+
_openssl_aes_arm_set_decrypt_key:
|
|
754
|
+
#else // __linux__
|
|
755
|
+
.globl openssl_aes_arm_set_decrypt_key
|
|
756
|
+
.align 5
|
|
757
|
+
openssl_aes_arm_set_decrypt_key:
|
|
758
|
+
#endif // __linux__
|
|
759
|
+
str lr,[sp,#-4]! // push lr
|
|
760
|
+
bl _armv4_AES_set_encrypt_key
|
|
761
|
+
teq r0,#0
|
|
762
|
+
ldr lr,[sp],#4 // pop lr
|
|
763
|
+
bne Labrt
|
|
764
|
+
|
|
765
|
+
mov r0,r2 // _AES_set_encrypt_key preserves r2,
|
|
766
|
+
mov r1,r2 // which is AES_KEY *key
|
|
767
|
+
b _armv4_AES_set_enc2dec_key
|
|
768
|
+
|
|
769
|
+
#if defined(__thumb2__) && !defined(__linux__)
|
|
770
|
+
.thumb_func _armv4_AES_set_enc2dec_key
|
|
771
|
+
#endif
|
|
772
|
+
.align 5
|
|
773
|
+
_armv4_AES_set_enc2dec_key:
|
|
774
|
+
stmdb sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
775
|
+
|
|
776
|
+
ldr r12,[r0,#240]
|
|
777
|
+
mov r7,r0 // input
|
|
778
|
+
add r8,r0,r12,lsl#4
|
|
779
|
+
mov r11,r1 // output
|
|
780
|
+
add r10,r1,r12,lsl#4
|
|
781
|
+
str r12,[r1,#240]
|
|
782
|
+
|
|
783
|
+
Linv: ldr r0,[r7],#16
|
|
784
|
+
ldr r1,[r7,#-12]
|
|
785
|
+
ldr r2,[r7,#-8]
|
|
786
|
+
ldr r3,[r7,#-4]
|
|
787
|
+
ldr r4,[r8],#-16
|
|
788
|
+
ldr r5,[r8,#16+4]
|
|
789
|
+
ldr r6,[r8,#16+8]
|
|
790
|
+
ldr r9,[r8,#16+12]
|
|
791
|
+
str r0,[r10],#-16
|
|
792
|
+
str r1,[r10,#16+4]
|
|
793
|
+
str r2,[r10,#16+8]
|
|
794
|
+
str r3,[r10,#16+12]
|
|
795
|
+
str r4,[r11],#16
|
|
796
|
+
str r5,[r11,#-12]
|
|
797
|
+
str r6,[r11,#-8]
|
|
798
|
+
str r9,[r11,#-4]
|
|
799
|
+
teq r7,r8
|
|
800
|
+
bne Linv
|
|
801
|
+
|
|
802
|
+
ldr r0,[r7]
|
|
803
|
+
ldr r1,[r7,#4]
|
|
804
|
+
ldr r2,[r7,#8]
|
|
805
|
+
ldr r3,[r7,#12]
|
|
806
|
+
str r0,[r11]
|
|
807
|
+
str r1,[r11,#4]
|
|
808
|
+
str r2,[r11,#8]
|
|
809
|
+
str r3,[r11,#12]
|
|
810
|
+
sub r11,r11,r12,lsl#3
|
|
811
|
+
ldr r0,[r11,#16]! // prefetch tp1
|
|
812
|
+
mov r7,#0x80
|
|
813
|
+
mov r8,#0x1b
|
|
814
|
+
orr r7,r7,#0x8000
|
|
815
|
+
orr r8,r8,#0x1b00
|
|
816
|
+
orr r7,r7,r7,lsl#16
|
|
817
|
+
orr r8,r8,r8,lsl#16
|
|
818
|
+
sub r12,r12,#1
|
|
819
|
+
mvn r9,r7
|
|
820
|
+
mov r12,r12,lsl#2 // (rounds-1)*4
|
|
821
|
+
|
|
822
|
+
Lmix: and r4,r0,r7
|
|
823
|
+
and r1,r0,r9
|
|
824
|
+
sub r4,r4,r4,lsr#7
|
|
825
|
+
and r4,r4,r8
|
|
826
|
+
eor r1,r4,r1,lsl#1 // tp2
|
|
827
|
+
|
|
828
|
+
and r4,r1,r7
|
|
829
|
+
and r2,r1,r9
|
|
830
|
+
sub r4,r4,r4,lsr#7
|
|
831
|
+
and r4,r4,r8
|
|
832
|
+
eor r2,r4,r2,lsl#1 // tp4
|
|
833
|
+
|
|
834
|
+
and r4,r2,r7
|
|
835
|
+
and r3,r2,r9
|
|
836
|
+
sub r4,r4,r4,lsr#7
|
|
837
|
+
and r4,r4,r8
|
|
838
|
+
eor r3,r4,r3,lsl#1 // tp8
|
|
839
|
+
|
|
840
|
+
eor r4,r1,r2
|
|
841
|
+
eor r5,r0,r3 // tp9
|
|
842
|
+
eor r4,r4,r3 // tpe
|
|
843
|
+
eor r4,r4,r1,ror#24
|
|
844
|
+
eor r4,r4,r5,ror#24 // ^= ROTATE(tpb=tp9^tp2,8)
|
|
845
|
+
eor r4,r4,r2,ror#16
|
|
846
|
+
eor r4,r4,r5,ror#16 // ^= ROTATE(tpd=tp9^tp4,16)
|
|
847
|
+
eor r4,r4,r5,ror#8 // ^= ROTATE(tp9,24)
|
|
848
|
+
|
|
849
|
+
ldr r0,[r11,#4] // prefetch tp1
|
|
850
|
+
str r4,[r11],#4
|
|
851
|
+
subs r12,r12,#1
|
|
852
|
+
bne Lmix
|
|
853
|
+
|
|
854
|
+
mov r0,#0
|
|
855
|
+
#if __ARM_ARCH__>=5
|
|
856
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,pc}
|
|
857
|
+
#else
|
|
858
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
859
|
+
tst lr,#1
|
|
860
|
+
moveq pc,lr // be binary compatible with V4, yet
|
|
861
|
+
.word 0xe12fff1e // interoperable with Thumb ISA:-)
|
|
862
|
+
#endif
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
.align 5
|
|
866
|
+
AES_Td:
|
|
867
|
+
.word 0x51f4a750, 0x7e416553, 0x1a17a4c3, 0x3a275e96
|
|
868
|
+
.word 0x3bab6bcb, 0x1f9d45f1, 0xacfa58ab, 0x4be30393
|
|
869
|
+
.word 0x2030fa55, 0xad766df6, 0x88cc7691, 0xf5024c25
|
|
870
|
+
.word 0x4fe5d7fc, 0xc52acbd7, 0x26354480, 0xb562a38f
|
|
871
|
+
.word 0xdeb15a49, 0x25ba1b67, 0x45ea0e98, 0x5dfec0e1
|
|
872
|
+
.word 0xc32f7502, 0x814cf012, 0x8d4697a3, 0x6bd3f9c6
|
|
873
|
+
.word 0x038f5fe7, 0x15929c95, 0xbf6d7aeb, 0x955259da
|
|
874
|
+
.word 0xd4be832d, 0x587421d3, 0x49e06929, 0x8ec9c844
|
|
875
|
+
.word 0x75c2896a, 0xf48e7978, 0x99583e6b, 0x27b971dd
|
|
876
|
+
.word 0xbee14fb6, 0xf088ad17, 0xc920ac66, 0x7dce3ab4
|
|
877
|
+
.word 0x63df4a18, 0xe51a3182, 0x97513360, 0x62537f45
|
|
878
|
+
.word 0xb16477e0, 0xbb6bae84, 0xfe81a01c, 0xf9082b94
|
|
879
|
+
.word 0x70486858, 0x8f45fd19, 0x94de6c87, 0x527bf8b7
|
|
880
|
+
.word 0xab73d323, 0x724b02e2, 0xe31f8f57, 0x6655ab2a
|
|
881
|
+
.word 0xb2eb2807, 0x2fb5c203, 0x86c57b9a, 0xd33708a5
|
|
882
|
+
.word 0x302887f2, 0x23bfa5b2, 0x02036aba, 0xed16825c
|
|
883
|
+
.word 0x8acf1c2b, 0xa779b492, 0xf307f2f0, 0x4e69e2a1
|
|
884
|
+
.word 0x65daf4cd, 0x0605bed5, 0xd134621f, 0xc4a6fe8a
|
|
885
|
+
.word 0x342e539d, 0xa2f355a0, 0x058ae132, 0xa4f6eb75
|
|
886
|
+
.word 0x0b83ec39, 0x4060efaa, 0x5e719f06, 0xbd6e1051
|
|
887
|
+
.word 0x3e218af9, 0x96dd063d, 0xdd3e05ae, 0x4de6bd46
|
|
888
|
+
.word 0x91548db5, 0x71c45d05, 0x0406d46f, 0x605015ff
|
|
889
|
+
.word 0x1998fb24, 0xd6bde997, 0x894043cc, 0x67d99e77
|
|
890
|
+
.word 0xb0e842bd, 0x07898b88, 0xe7195b38, 0x79c8eedb
|
|
891
|
+
.word 0xa17c0a47, 0x7c420fe9, 0xf8841ec9, 0x00000000
|
|
892
|
+
.word 0x09808683, 0x322bed48, 0x1e1170ac, 0x6c5a724e
|
|
893
|
+
.word 0xfd0efffb, 0x0f853856, 0x3daed51e, 0x362d3927
|
|
894
|
+
.word 0x0a0fd964, 0x685ca621, 0x9b5b54d1, 0x24362e3a
|
|
895
|
+
.word 0x0c0a67b1, 0x9357e70f, 0xb4ee96d2, 0x1b9b919e
|
|
896
|
+
.word 0x80c0c54f, 0x61dc20a2, 0x5a774b69, 0x1c121a16
|
|
897
|
+
.word 0xe293ba0a, 0xc0a02ae5, 0x3c22e043, 0x121b171d
|
|
898
|
+
.word 0x0e090d0b, 0xf28bc7ad, 0x2db6a8b9, 0x141ea9c8
|
|
899
|
+
.word 0x57f11985, 0xaf75074c, 0xee99ddbb, 0xa37f60fd
|
|
900
|
+
.word 0xf701269f, 0x5c72f5bc, 0x44663bc5, 0x5bfb7e34
|
|
901
|
+
.word 0x8b432976, 0xcb23c6dc, 0xb6edfc68, 0xb8e4f163
|
|
902
|
+
.word 0xd731dcca, 0x42638510, 0x13972240, 0x84c61120
|
|
903
|
+
.word 0x854a247d, 0xd2bb3df8, 0xaef93211, 0xc729a16d
|
|
904
|
+
.word 0x1d9e2f4b, 0xdcb230f3, 0x0d8652ec, 0x77c1e3d0
|
|
905
|
+
.word 0x2bb3166c, 0xa970b999, 0x119448fa, 0x47e96422
|
|
906
|
+
.word 0xa8fc8cc4, 0xa0f03f1a, 0x567d2cd8, 0x223390ef
|
|
907
|
+
.word 0x87494ec7, 0xd938d1c1, 0x8ccaa2fe, 0x98d40b36
|
|
908
|
+
.word 0xa6f581cf, 0xa57ade28, 0xdab78e26, 0x3fadbfa4
|
|
909
|
+
.word 0x2c3a9de4, 0x5078920d, 0x6a5fcc9b, 0x547e4662
|
|
910
|
+
.word 0xf68d13c2, 0x90d8b8e8, 0x2e39f75e, 0x82c3aff5
|
|
911
|
+
.word 0x9f5d80be, 0x69d0937c, 0x6fd52da9, 0xcf2512b3
|
|
912
|
+
.word 0xc8ac993b, 0x10187da7, 0xe89c636e, 0xdb3bbb7b
|
|
913
|
+
.word 0xcd267809, 0x6e5918f4, 0xec9ab701, 0x834f9aa8
|
|
914
|
+
.word 0xe6956e65, 0xaaffe67e, 0x21bccf08, 0xef15e8e6
|
|
915
|
+
.word 0xbae79bd9, 0x4a6f36ce, 0xea9f09d4, 0x29b07cd6
|
|
916
|
+
.word 0x31a4b2af, 0x2a3f2331, 0xc6a59430, 0x35a266c0
|
|
917
|
+
.word 0x744ebc37, 0xfc82caa6, 0xe090d0b0, 0x33a7d815
|
|
918
|
+
.word 0xf104984a, 0x41ecdaf7, 0x7fcd500e, 0x1791f62f
|
|
919
|
+
.word 0x764dd68d, 0x43efb04d, 0xccaa4d54, 0xe49604df
|
|
920
|
+
.word 0x9ed1b5e3, 0x4c6a881b, 0xc12c1fb8, 0x4665517f
|
|
921
|
+
.word 0x9d5eea04, 0x018c355d, 0xfa877473, 0xfb0b412e
|
|
922
|
+
.word 0xb3671d5a, 0x92dbd252, 0xe9105633, 0x6dd64713
|
|
923
|
+
.word 0x9ad7618c, 0x37a10c7a, 0x59f8148e, 0xeb133c89
|
|
924
|
+
.word 0xcea927ee, 0xb761c935, 0xe11ce5ed, 0x7a47b13c
|
|
925
|
+
.word 0x9cd2df59, 0x55f2733f, 0x1814ce79, 0x73c737bf
|
|
926
|
+
.word 0x53f7cdea, 0x5ffdaa5b, 0xdf3d6f14, 0x7844db86
|
|
927
|
+
.word 0xcaaff381, 0xb968c43e, 0x3824342c, 0xc2a3405f
|
|
928
|
+
.word 0x161dc372, 0xbce2250c, 0x283c498b, 0xff0d9541
|
|
929
|
+
.word 0x39a80171, 0x080cb3de, 0xd8b4e49c, 0x6456c190
|
|
930
|
+
.word 0x7bcb8461, 0xd532b670, 0x486c5c74, 0xd0b85742
|
|
931
|
+
// Td4[256]
|
|
932
|
+
.byte 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38
|
|
933
|
+
.byte 0xbf, 0x40, 0xa3, 0x9e, 0x81, 0xf3, 0xd7, 0xfb
|
|
934
|
+
.byte 0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87
|
|
935
|
+
.byte 0x34, 0x8e, 0x43, 0x44, 0xc4, 0xde, 0xe9, 0xcb
|
|
936
|
+
.byte 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d
|
|
937
|
+
.byte 0xee, 0x4c, 0x95, 0x0b, 0x42, 0xfa, 0xc3, 0x4e
|
|
938
|
+
.byte 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2
|
|
939
|
+
.byte 0x76, 0x5b, 0xa2, 0x49, 0x6d, 0x8b, 0xd1, 0x25
|
|
940
|
+
.byte 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16
|
|
941
|
+
.byte 0xd4, 0xa4, 0x5c, 0xcc, 0x5d, 0x65, 0xb6, 0x92
|
|
942
|
+
.byte 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda
|
|
943
|
+
.byte 0x5e, 0x15, 0x46, 0x57, 0xa7, 0x8d, 0x9d, 0x84
|
|
944
|
+
.byte 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a
|
|
945
|
+
.byte 0xf7, 0xe4, 0x58, 0x05, 0xb8, 0xb3, 0x45, 0x06
|
|
946
|
+
.byte 0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02
|
|
947
|
+
.byte 0xc1, 0xaf, 0xbd, 0x03, 0x01, 0x13, 0x8a, 0x6b
|
|
948
|
+
.byte 0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea
|
|
949
|
+
.byte 0x97, 0xf2, 0xcf, 0xce, 0xf0, 0xb4, 0xe6, 0x73
|
|
950
|
+
.byte 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85
|
|
951
|
+
.byte 0xe2, 0xf9, 0x37, 0xe8, 0x1c, 0x75, 0xdf, 0x6e
|
|
952
|
+
.byte 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89
|
|
953
|
+
.byte 0x6f, 0xb7, 0x62, 0x0e, 0xaa, 0x18, 0xbe, 0x1b
|
|
954
|
+
.byte 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20
|
|
955
|
+
.byte 0x9a, 0xdb, 0xc0, 0xfe, 0x78, 0xcd, 0x5a, 0xf4
|
|
956
|
+
.byte 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31
|
|
957
|
+
.byte 0xb1, 0x12, 0x10, 0x59, 0x27, 0x80, 0xec, 0x5f
|
|
958
|
+
.byte 0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d
|
|
959
|
+
.byte 0x2d, 0xe5, 0x7a, 0x9f, 0x93, 0xc9, 0x9c, 0xef
|
|
960
|
+
.byte 0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0
|
|
961
|
+
.byte 0xc8, 0xeb, 0xbb, 0x3c, 0x83, 0x53, 0x99, 0x61
|
|
962
|
+
.byte 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26
|
|
963
|
+
.byte 0xe1, 0x69, 0x14, 0x63, 0x55, 0x21, 0x0c, 0x7d
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
#ifndef __APPLE__
|
|
967
|
+
.type openssl_aes_arm_decrypt, %function
|
|
968
|
+
#endif
|
|
969
|
+
// void AES_decrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key) {
|
|
970
|
+
#ifndef __linux__
|
|
971
|
+
.globl _openssl_aes_arm_decrypt
|
|
972
|
+
#ifdef __thumb2__
|
|
973
|
+
.thumb_func _openssl_aes_arm_decrypt
|
|
974
|
+
#endif
|
|
975
|
+
.align 5
|
|
976
|
+
_openssl_aes_arm_decrypt:
|
|
977
|
+
#else // __linux__
|
|
978
|
+
.globl openssl_aes_arm_decrypt
|
|
979
|
+
.align 5
|
|
980
|
+
openssl_aes_arm_decrypt:
|
|
981
|
+
#endif // __linux__
|
|
982
|
+
#ifndef __thumb2__
|
|
983
|
+
sub r3,pc,#8 // _AES_decrypt
|
|
984
|
+
#else
|
|
985
|
+
adr r3,.
|
|
986
|
+
#endif
|
|
987
|
+
stmdb sp!,{r1,r4-r12,lr}
|
|
988
|
+
#if defined(__thumb2__) || defined(__APPLE__)
|
|
989
|
+
adr r10,AES_Td
|
|
990
|
+
#elif defined(__linux__)
|
|
991
|
+
sub r10,r3,#openssl_aes_arm_decrypt-AES_Td // Td
|
|
992
|
+
#else
|
|
993
|
+
sub r10,r3,#_openssl_aes_arm_decrypt-AES_Td // Td
|
|
994
|
+
#endif
|
|
995
|
+
mov r12,r0 // inp
|
|
996
|
+
mov r11,r2
|
|
997
|
+
#if __ARM_ARCH__<7
|
|
998
|
+
ldrb r0,[r12,#3] // load input data in endian-neutral
|
|
999
|
+
ldrb r4,[r12,#2] // manner...
|
|
1000
|
+
ldrb r5,[r12,#1]
|
|
1001
|
+
ldrb r6,[r12,#0]
|
|
1002
|
+
orr r0,r0,r4,lsl#8
|
|
1003
|
+
ldrb r1,[r12,#7]
|
|
1004
|
+
orr r0,r0,r5,lsl#16
|
|
1005
|
+
ldrb r4,[r12,#6]
|
|
1006
|
+
orr r0,r0,r6,lsl#24
|
|
1007
|
+
ldrb r5,[r12,#5]
|
|
1008
|
+
ldrb r6,[r12,#4]
|
|
1009
|
+
orr r1,r1,r4,lsl#8
|
|
1010
|
+
ldrb r2,[r12,#11]
|
|
1011
|
+
orr r1,r1,r5,lsl#16
|
|
1012
|
+
ldrb r4,[r12,#10]
|
|
1013
|
+
orr r1,r1,r6,lsl#24
|
|
1014
|
+
ldrb r5,[r12,#9]
|
|
1015
|
+
ldrb r6,[r12,#8]
|
|
1016
|
+
orr r2,r2,r4,lsl#8
|
|
1017
|
+
ldrb r3,[r12,#15]
|
|
1018
|
+
orr r2,r2,r5,lsl#16
|
|
1019
|
+
ldrb r4,[r12,#14]
|
|
1020
|
+
orr r2,r2,r6,lsl#24
|
|
1021
|
+
ldrb r5,[r12,#13]
|
|
1022
|
+
ldrb r6,[r12,#12]
|
|
1023
|
+
orr r3,r3,r4,lsl#8
|
|
1024
|
+
orr r3,r3,r5,lsl#16
|
|
1025
|
+
orr r3,r3,r6,lsl#24
|
|
1026
|
+
#else
|
|
1027
|
+
ldr r0,[r12,#0]
|
|
1028
|
+
ldr r1,[r12,#4]
|
|
1029
|
+
ldr r2,[r12,#8]
|
|
1030
|
+
ldr r3,[r12,#12]
|
|
1031
|
+
#ifdef __ARMEL__
|
|
1032
|
+
rev r0,r0
|
|
1033
|
+
rev r1,r1
|
|
1034
|
+
rev r2,r2
|
|
1035
|
+
rev r3,r3
|
|
1036
|
+
#endif
|
|
1037
|
+
#endif
|
|
1038
|
+
bl _armv4_AES_decrypt
|
|
1039
|
+
|
|
1040
|
+
ldr r12,[sp],#4 // pop out
|
|
1041
|
+
#if __ARM_ARCH__>=7
|
|
1042
|
+
#ifdef __ARMEL__
|
|
1043
|
+
rev r0,r0
|
|
1044
|
+
rev r1,r1
|
|
1045
|
+
rev r2,r2
|
|
1046
|
+
rev r3,r3
|
|
1047
|
+
#endif
|
|
1048
|
+
str r0,[r12,#0]
|
|
1049
|
+
str r1,[r12,#4]
|
|
1050
|
+
str r2,[r12,#8]
|
|
1051
|
+
str r3,[r12,#12]
|
|
1052
|
+
#else
|
|
1053
|
+
mov r4,r0,lsr#24 // write output in endian-neutral
|
|
1054
|
+
mov r5,r0,lsr#16 // manner...
|
|
1055
|
+
mov r6,r0,lsr#8
|
|
1056
|
+
strb r4,[r12,#0]
|
|
1057
|
+
strb r5,[r12,#1]
|
|
1058
|
+
mov r4,r1,lsr#24
|
|
1059
|
+
strb r6,[r12,#2]
|
|
1060
|
+
mov r5,r1,lsr#16
|
|
1061
|
+
strb r0,[r12,#3]
|
|
1062
|
+
mov r6,r1,lsr#8
|
|
1063
|
+
strb r4,[r12,#4]
|
|
1064
|
+
strb r5,[r12,#5]
|
|
1065
|
+
mov r4,r2,lsr#24
|
|
1066
|
+
strb r6,[r12,#6]
|
|
1067
|
+
mov r5,r2,lsr#16
|
|
1068
|
+
strb r1,[r12,#7]
|
|
1069
|
+
mov r6,r2,lsr#8
|
|
1070
|
+
strb r4,[r12,#8]
|
|
1071
|
+
strb r5,[r12,#9]
|
|
1072
|
+
mov r4,r3,lsr#24
|
|
1073
|
+
strb r6,[r12,#10]
|
|
1074
|
+
mov r5,r3,lsr#16
|
|
1075
|
+
strb r2,[r12,#11]
|
|
1076
|
+
mov r6,r3,lsr#8
|
|
1077
|
+
strb r4,[r12,#12]
|
|
1078
|
+
strb r5,[r12,#13]
|
|
1079
|
+
strb r6,[r12,#14]
|
|
1080
|
+
strb r3,[r12,#15]
|
|
1081
|
+
#endif
|
|
1082
|
+
#if __ARM_ARCH__>=5
|
|
1083
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,pc}
|
|
1084
|
+
#else
|
|
1085
|
+
ldmia sp!,{r4,r5,r6,r7,r8,r9,r10,r11,r12,lr}
|
|
1086
|
+
tst lr,#1
|
|
1087
|
+
moveq pc,lr // be binary compatible with V4, yet
|
|
1088
|
+
.word 0xe12fff1e // interoperable with Thumb ISA:-)
|
|
1089
|
+
#endif
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
#if defined(__thumb2__) && !defined(__linux__)
|
|
1093
|
+
.thumb_func _armv4_AES_decrypt
|
|
1094
|
+
#endif
|
|
1095
|
+
.align 2
|
|
1096
|
+
_armv4_AES_decrypt:
|
|
1097
|
+
str lr,[sp,#-4]! // push lr
|
|
1098
|
+
ldmia r11!,{r4,r5,r6,r7}
|
|
1099
|
+
eor r0,r0,r4
|
|
1100
|
+
ldr r12,[r11,#240-16]
|
|
1101
|
+
eor r1,r1,r5
|
|
1102
|
+
eor r2,r2,r6
|
|
1103
|
+
eor r3,r3,r7
|
|
1104
|
+
sub r12,r12,#1
|
|
1105
|
+
mov lr,#255
|
|
1106
|
+
|
|
1107
|
+
and r7,lr,r0,lsr#16
|
|
1108
|
+
and r8,lr,r0,lsr#8
|
|
1109
|
+
and r9,lr,r0
|
|
1110
|
+
mov r0,r0,lsr#24
|
|
1111
|
+
Ldec_loop:
|
|
1112
|
+
ldr r4,[r10,r7,lsl#2] // Td1[s0>>16]
|
|
1113
|
+
and r7,lr,r1 // i0
|
|
1114
|
+
ldr r5,[r10,r8,lsl#2] // Td2[s0>>8]
|
|
1115
|
+
and r8,lr,r1,lsr#16
|
|
1116
|
+
ldr r6,[r10,r9,lsl#2] // Td3[s0>>0]
|
|
1117
|
+
and r9,lr,r1,lsr#8
|
|
1118
|
+
ldr r0,[r10,r0,lsl#2] // Td0[s0>>24]
|
|
1119
|
+
mov r1,r1,lsr#24
|
|
1120
|
+
|
|
1121
|
+
ldr r7,[r10,r7,lsl#2] // Td3[s1>>0]
|
|
1122
|
+
ldr r8,[r10,r8,lsl#2] // Td1[s1>>16]
|
|
1123
|
+
ldr r9,[r10,r9,lsl#2] // Td2[s1>>8]
|
|
1124
|
+
eor r0,r0,r7,ror#24
|
|
1125
|
+
ldr r1,[r10,r1,lsl#2] // Td0[s1>>24]
|
|
1126
|
+
and r7,lr,r2,lsr#8 // i0
|
|
1127
|
+
eor r5,r8,r5,ror#8
|
|
1128
|
+
and r8,lr,r2 // i1
|
|
1129
|
+
eor r6,r9,r6,ror#8
|
|
1130
|
+
and r9,lr,r2,lsr#16
|
|
1131
|
+
ldr r7,[r10,r7,lsl#2] // Td2[s2>>8]
|
|
1132
|
+
eor r1,r1,r4,ror#8
|
|
1133
|
+
ldr r8,[r10,r8,lsl#2] // Td3[s2>>0]
|
|
1134
|
+
mov r2,r2,lsr#24
|
|
1135
|
+
|
|
1136
|
+
ldr r9,[r10,r9,lsl#2] // Td1[s2>>16]
|
|
1137
|
+
eor r0,r0,r7,ror#16
|
|
1138
|
+
ldr r2,[r10,r2,lsl#2] // Td0[s2>>24]
|
|
1139
|
+
and r7,lr,r3,lsr#16 // i0
|
|
1140
|
+
eor r1,r1,r8,ror#24
|
|
1141
|
+
and r8,lr,r3,lsr#8 // i1
|
|
1142
|
+
eor r6,r9,r6,ror#8
|
|
1143
|
+
and r9,lr,r3 // i2
|
|
1144
|
+
ldr r7,[r10,r7,lsl#2] // Td1[s3>>16]
|
|
1145
|
+
eor r2,r2,r5,ror#8
|
|
1146
|
+
ldr r8,[r10,r8,lsl#2] // Td2[s3>>8]
|
|
1147
|
+
mov r3,r3,lsr#24
|
|
1148
|
+
|
|
1149
|
+
ldr r9,[r10,r9,lsl#2] // Td3[s3>>0]
|
|
1150
|
+
eor r0,r0,r7,ror#8
|
|
1151
|
+
ldr r7,[r11],#16
|
|
1152
|
+
eor r1,r1,r8,ror#16
|
|
1153
|
+
ldr r3,[r10,r3,lsl#2] // Td0[s3>>24]
|
|
1154
|
+
eor r2,r2,r9,ror#24
|
|
1155
|
+
|
|
1156
|
+
ldr r4,[r11,#-12]
|
|
1157
|
+
eor r0,r0,r7
|
|
1158
|
+
ldr r5,[r11,#-8]
|
|
1159
|
+
eor r3,r3,r6,ror#8
|
|
1160
|
+
ldr r6,[r11,#-4]
|
|
1161
|
+
and r7,lr,r0,lsr#16
|
|
1162
|
+
eor r1,r1,r4
|
|
1163
|
+
and r8,lr,r0,lsr#8
|
|
1164
|
+
eor r2,r2,r5
|
|
1165
|
+
and r9,lr,r0
|
|
1166
|
+
eor r3,r3,r6
|
|
1167
|
+
mov r0,r0,lsr#24
|
|
1168
|
+
|
|
1169
|
+
subs r12,r12,#1
|
|
1170
|
+
bne Ldec_loop
|
|
1171
|
+
|
|
1172
|
+
add r10,r10,#1024
|
|
1173
|
+
|
|
1174
|
+
ldr r5,[r10,#0] // prefetch Td4
|
|
1175
|
+
ldr r6,[r10,#32]
|
|
1176
|
+
ldr r4,[r10,#64]
|
|
1177
|
+
ldr r5,[r10,#96]
|
|
1178
|
+
ldr r6,[r10,#128]
|
|
1179
|
+
ldr r4,[r10,#160]
|
|
1180
|
+
ldr r5,[r10,#192]
|
|
1181
|
+
ldr r6,[r10,#224]
|
|
1182
|
+
|
|
1183
|
+
ldrb r0,[r10,r0] // Td4[s0>>24]
|
|
1184
|
+
ldrb r4,[r10,r7] // Td4[s0>>16]
|
|
1185
|
+
and r7,lr,r1 // i0
|
|
1186
|
+
ldrb r5,[r10,r8] // Td4[s0>>8]
|
|
1187
|
+
and r8,lr,r1,lsr#16
|
|
1188
|
+
ldrb r6,[r10,r9] // Td4[s0>>0]
|
|
1189
|
+
and r9,lr,r1,lsr#8
|
|
1190
|
+
|
|
1191
|
+
add r1,r10,r1,lsr#24
|
|
1192
|
+
ldrb r7,[r10,r7] // Td4[s1>>0]
|
|
1193
|
+
ldrb r1,[r1] // Td4[s1>>24]
|
|
1194
|
+
ldrb r8,[r10,r8] // Td4[s1>>16]
|
|
1195
|
+
eor r0,r7,r0,lsl#24
|
|
1196
|
+
ldrb r9,[r10,r9] // Td4[s1>>8]
|
|
1197
|
+
eor r1,r4,r1,lsl#8
|
|
1198
|
+
and r7,lr,r2,lsr#8 // i0
|
|
1199
|
+
eor r5,r5,r8,lsl#8
|
|
1200
|
+
and r8,lr,r2 // i1
|
|
1201
|
+
ldrb r7,[r10,r7] // Td4[s2>>8]
|
|
1202
|
+
eor r6,r6,r9,lsl#8
|
|
1203
|
+
ldrb r8,[r10,r8] // Td4[s2>>0]
|
|
1204
|
+
and r9,lr,r2,lsr#16
|
|
1205
|
+
|
|
1206
|
+
add r2,r10,r2,lsr#24
|
|
1207
|
+
ldrb r2,[r2] // Td4[s2>>24]
|
|
1208
|
+
eor r0,r0,r7,lsl#8
|
|
1209
|
+
ldrb r9,[r10,r9] // Td4[s2>>16]
|
|
1210
|
+
eor r1,r8,r1,lsl#16
|
|
1211
|
+
and r7,lr,r3,lsr#16 // i0
|
|
1212
|
+
eor r2,r5,r2,lsl#16
|
|
1213
|
+
and r8,lr,r3,lsr#8 // i1
|
|
1214
|
+
ldrb r7,[r10,r7] // Td4[s3>>16]
|
|
1215
|
+
eor r6,r6,r9,lsl#16
|
|
1216
|
+
ldrb r8,[r10,r8] // Td4[s3>>8]
|
|
1217
|
+
and r9,lr,r3 // i2
|
|
1218
|
+
|
|
1219
|
+
add r3,r10,r3,lsr#24
|
|
1220
|
+
ldrb r9,[r10,r9] // Td4[s3>>0]
|
|
1221
|
+
ldrb r3,[r3] // Td4[s3>>24]
|
|
1222
|
+
eor r0,r0,r7,lsl#16
|
|
1223
|
+
ldr r7,[r11,#0]
|
|
1224
|
+
eor r1,r1,r8,lsl#8
|
|
1225
|
+
ldr r4,[r11,#4]
|
|
1226
|
+
eor r2,r9,r2,lsl#8
|
|
1227
|
+
ldr r5,[r11,#8]
|
|
1228
|
+
eor r3,r6,r3,lsl#24
|
|
1229
|
+
ldr r6,[r11,#12]
|
|
1230
|
+
|
|
1231
|
+
eor r0,r0,r7
|
|
1232
|
+
eor r1,r1,r4
|
|
1233
|
+
eor r2,r2,r5
|
|
1234
|
+
eor r3,r3,r6
|
|
1235
|
+
|
|
1236
|
+
sub r10,r10,#1024
|
|
1237
|
+
ldr pc,[sp],#4 // pop and return
|
|
1238
|
+
|
|
1239
|
+
.byte 65,69,83,32,102,111,114,32,65,82,77,118,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0
|
|
1240
|
+
.align 2
|
|
1241
|
+
.align 2
|
|
1242
|
+
|
|
1243
|
+
#endif
|