├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .idea └── externalDependencies.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── encrypted-datastore-bom └── build.gradle.kts ├── encrypted-datastore-preferences ├── api │ ├── android │ │ └── encrypted-datastore-preferences.api │ └── jvm │ │ └── encrypted-datastore-preferences.api ├── build.gradle.kts └── src │ ├── commonJvmMain │ └── kotlin │ │ ├── EncryptedPreferenceDataStore.kt │ │ └── internal │ │ └── OkioSerializerJvm.kt │ └── commonJvmTest │ └── kotlin │ └── EncryptedPreferenceDataStoreCompatibilityTest.kt ├── encrypted-datastore ├── api │ ├── android │ │ └── encrypted-datastore.api │ └── jvm │ │ └── encrypted-datastore.api ├── build.gradle.kts ├── src │ ├── commonJvmMain │ │ └── kotlin │ │ │ ├── Aead.kt │ │ │ ├── EncryptingSerializer.kt │ │ │ └── migration │ │ │ └── StreamingAeadWithFallback.kt │ └── commonJvmTest │ │ └── kotlin │ │ ├── EncryptedDataStoreCompatibilityTest.kt │ │ ├── EncryptingSerializerTest.kt │ │ └── migration │ │ └── StreamingAeadWithFallbackTest.kt └── testFixtures │ └── src │ └── commonJvmMain │ └── kotlin │ ├── StringSerializer.kt │ └── TestAssets.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json ├── sample ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── example │ │ └── sample │ │ ├── MainActivity.kt │ │ ├── MainScreen.kt │ │ ├── MainViewModel.kt │ │ ├── Settings.kt │ │ ├── SettingsStorage.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Motion.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── security-crypto-datastore-preferences ├── api │ └── security-crypto-datastore-preferences.api ├── build.gradle.kts └── src │ ├── androidTest │ └── kotlin │ │ └── EncryptedPreferenceDataStoreTest.kt │ └── main │ └── kotlin │ ├── EncryptedPreferenceDataStoreFactory.kt │ └── EncryptedPreferencesDataStoreDelegate.kt ├── security-crypto-datastore ├── api │ └── security-crypto-datastore.api ├── build.gradle.kts └── src │ └── main │ └── kotlin │ ├── EncryptedDataStoreDelegate.kt │ ├── EncryptedDataStoreFactory.kt │ ├── EncryptedDataStoreOptions.kt │ ├── EncryptedFile.kt │ └── internal │ └── EncryptedFileVisibilityHack.kt ├── settings.gradle.kts └── testAssets ├── encryptedDataStore ├── encryptedDataStore.preferences_pb ├── key.json └── stearmingKey.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/externalDependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/.idea/externalDependencies.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/README.md -------------------------------------------------------------------------------- /encrypted-datastore-bom/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-bom/build.gradle.kts -------------------------------------------------------------------------------- /encrypted-datastore-preferences/api/android/encrypted-datastore-preferences.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/api/android/encrypted-datastore-preferences.api -------------------------------------------------------------------------------- /encrypted-datastore-preferences/api/jvm/encrypted-datastore-preferences.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/api/jvm/encrypted-datastore-preferences.api -------------------------------------------------------------------------------- /encrypted-datastore-preferences/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/build.gradle.kts -------------------------------------------------------------------------------- /encrypted-datastore-preferences/src/commonJvmMain/kotlin/EncryptedPreferenceDataStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/src/commonJvmMain/kotlin/EncryptedPreferenceDataStore.kt -------------------------------------------------------------------------------- /encrypted-datastore-preferences/src/commonJvmMain/kotlin/internal/OkioSerializerJvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/src/commonJvmMain/kotlin/internal/OkioSerializerJvm.kt -------------------------------------------------------------------------------- /encrypted-datastore-preferences/src/commonJvmTest/kotlin/EncryptedPreferenceDataStoreCompatibilityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore-preferences/src/commonJvmTest/kotlin/EncryptedPreferenceDataStoreCompatibilityTest.kt -------------------------------------------------------------------------------- /encrypted-datastore/api/android/encrypted-datastore.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/api/android/encrypted-datastore.api -------------------------------------------------------------------------------- /encrypted-datastore/api/jvm/encrypted-datastore.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/api/jvm/encrypted-datastore.api -------------------------------------------------------------------------------- /encrypted-datastore/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/build.gradle.kts -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmMain/kotlin/Aead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmMain/kotlin/Aead.kt -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmMain/kotlin/EncryptingSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmMain/kotlin/EncryptingSerializer.kt -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmMain/kotlin/migration/StreamingAeadWithFallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmMain/kotlin/migration/StreamingAeadWithFallback.kt -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmTest/kotlin/EncryptedDataStoreCompatibilityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmTest/kotlin/EncryptedDataStoreCompatibilityTest.kt -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmTest/kotlin/EncryptingSerializerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmTest/kotlin/EncryptingSerializerTest.kt -------------------------------------------------------------------------------- /encrypted-datastore/src/commonJvmTest/kotlin/migration/StreamingAeadWithFallbackTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/src/commonJvmTest/kotlin/migration/StreamingAeadWithFallbackTest.kt -------------------------------------------------------------------------------- /encrypted-datastore/testFixtures/src/commonJvmMain/kotlin/StringSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/testFixtures/src/commonJvmMain/kotlin/StringSerializer.kt -------------------------------------------------------------------------------- /encrypted-datastore/testFixtures/src/commonJvmMain/kotlin/TestAssets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/encrypted-datastore/testFixtures/src/commonJvmMain/kotlin/TestAssets.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/renovate.json -------------------------------------------------------------------------------- /sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/build.gradle.kts -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/MainScreen.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/MainViewModel.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/Settings.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/SettingsStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/SettingsStorage.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/ui/theme/Color.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/ui/theme/Motion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/ui/theme/Motion.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/ui/theme/Theme.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/example/sample/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/kotlin/com/example/sample/ui/theme/Type.kt -------------------------------------------------------------------------------- /sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /security-crypto-datastore-preferences/api/security-crypto-datastore-preferences.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore-preferences/api/security-crypto-datastore-preferences.api -------------------------------------------------------------------------------- /security-crypto-datastore-preferences/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore-preferences/build.gradle.kts -------------------------------------------------------------------------------- /security-crypto-datastore-preferences/src/androidTest/kotlin/EncryptedPreferenceDataStoreTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore-preferences/src/androidTest/kotlin/EncryptedPreferenceDataStoreTest.kt -------------------------------------------------------------------------------- /security-crypto-datastore-preferences/src/main/kotlin/EncryptedPreferenceDataStoreFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore-preferences/src/main/kotlin/EncryptedPreferenceDataStoreFactory.kt -------------------------------------------------------------------------------- /security-crypto-datastore-preferences/src/main/kotlin/EncryptedPreferencesDataStoreDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore-preferences/src/main/kotlin/EncryptedPreferencesDataStoreDelegate.kt -------------------------------------------------------------------------------- /security-crypto-datastore/api/security-crypto-datastore.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/api/security-crypto-datastore.api -------------------------------------------------------------------------------- /security-crypto-datastore/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/build.gradle.kts -------------------------------------------------------------------------------- /security-crypto-datastore/src/main/kotlin/EncryptedDataStoreDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/src/main/kotlin/EncryptedDataStoreDelegate.kt -------------------------------------------------------------------------------- /security-crypto-datastore/src/main/kotlin/EncryptedDataStoreFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/src/main/kotlin/EncryptedDataStoreFactory.kt -------------------------------------------------------------------------------- /security-crypto-datastore/src/main/kotlin/EncryptedDataStoreOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/src/main/kotlin/EncryptedDataStoreOptions.kt -------------------------------------------------------------------------------- /security-crypto-datastore/src/main/kotlin/EncryptedFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/src/main/kotlin/EncryptedFile.kt -------------------------------------------------------------------------------- /security-crypto-datastore/src/main/kotlin/internal/EncryptedFileVisibilityHack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/security-crypto-datastore/src/main/kotlin/internal/EncryptedFileVisibilityHack.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /testAssets/encryptedDataStore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/testAssets/encryptedDataStore -------------------------------------------------------------------------------- /testAssets/encryptedDataStore.preferences_pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/testAssets/encryptedDataStore.preferences_pb -------------------------------------------------------------------------------- /testAssets/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/testAssets/key.json -------------------------------------------------------------------------------- /testAssets/stearmingKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osipxd/encrypted-datastore/HEAD/testAssets/stearmingKey.json --------------------------------------------------------------------------------