adorsys / secure-storage-android

Store strings & credentials securely encrypted on your device
Apache License 2.0
367 stars 58 forks source link

"Remove" fails for keys of sets #90

Open gmale opened 4 years ago

gmale commented 4 years ago

The remove function does not work as expected for values that are Sets of Strings. This issue is due to the way that sets are stored using multiple keys.

Expected:

SecurePreferences.setValue(context, "some_key", setOf("one", "two", "three"))
SecurePreferences.removeValue(context, "key_for_set") // does nothing to remove the set!!
SecurePreferences.contains(context, "some_key") // returns true. Should return false.