martinkasa/capacitor-secure-storage-plugin

feat: add allKeys api

Closed this issue · 1 comments

Storage implementations usually offers a way to iterate over all the entries in the storage :

This benefits in being able to only remove the entries you were responsible for (ie. looking for entries with prefixed keys) and not remove the whole storage.

-> For iOS, SwiftKeychainWrapper already implements an .allKeys api (missing in their doc).
-> For Android, I haven't checked yet.

Added in v0.5.0 by PR #27