iamMehedi / Secured-Preference-Store

A cryptography library and a SharedPreferences wrapper for Android that encrypts the content with 256 bit AES encryption. The Encryption key is securely stored in device's KeyStore.
562 stars 97 forks source link

Getting encrypted value when using OnSharedPreferenceChangeListener #51

Closed hakobt closed 5 years ago

hakobt commented 5 years ago

Is there a way to decrypt manually when you receive values from OnSharedPreferenceChangeListener ?

iamMehedi commented 5 years ago

You can use a normal SharedPreferences and then encrypt/decrypt manually using the EncryptionManager

hakobt commented 5 years ago

Thank you