Working example Xamarin.iOS / Akavache

Does anyone have and want to share a working example of using Akavache in the Xamarin.iOS project (ideally without any other additions to the ui frameworks, using side bones as much as possible) that implement a custom EncryptionProvider so that the Protected Cache is actually encrypted.

To clarify, I would like the following example to show the following:

  • using Xamarin.iOS to create a simple iOS application
  • using Akavache to cache data
  • using Akavache BlobCache.Secure or SQLiteEncryptedBlobCache using a special EncryptionProvider implementation to save cached data when data is at rest

Thank you for your help.

Output:

Using the example below, I got my test solution and shared it here for those whom it can help in the future: https://github.com/dmitrysamuylov/xamarin-ios-akavache-secure-example

+2
source share
1 answer

Link to the sample that I created

https://github.com/PureWeen/Akavache.Samples

I understand that links only answers, as a rule, frown, but I don’t know if anyone wants to insert my answer in my entire sample :-)

+2
source

Source: https://habr.com/ru/post/1271581/


All Articles