getAll

actual open override fun getAll(): List<Pair<String, Any>>

Retrieves all key-value pairs stored in the secure local storage. The keys are represented as strings, and the values are of type Any.

Return

A list of key-value pairs where each key is a string and the corresponding value is decrypted. Throws an exception if any decryption operation fails.

expect open override fun getAll(): List<Pair<String, Any>>

Retrieves all key-value pairs stored in the secure local storage.

Return

A list of pairs where each pair contains a string key and its associated value of any type.