secure-storage-android
secure-storage-android copied to clipboard
Store strings & credentials securely encrypted on your device
Hello adorsys, I use 1.2.4 version. > Caused by java.lang.NullPointerException: Attempt to invoke virtual method 'java.security.PublicKey java.security.cert.Certificate.getPublicKey()' on a null object reference at de.adorsys.android.securestoragelibrary.KeystoreTool.getPublicKey(KeystoreTool.java:174) at de.adorsys.android.securestoragelibrary.KeystoreTool.encryptMessage(KeystoreTool.java:82) at de.adorsys.android.securestoragelibrary.SecurePreferences.setValue(SecurePreferences.java:59) at tr.gov.eicisleri.App.onCreate(App.kt:33)...
what is the last version of this library?
Hello - per the Android studio warnings, jCenter is now deprecated and apparently will soon be taken down. I tried to remove it and switch to mavenCentral and this was...
While using this library with ordered sets, I encountered a critical bug that would silently permute values because sets would be saved _in order_ but loaded _in random order_! This...
I am getting the below error while i am running my android app on the new Beta of Android 12. I use the version de.adorsys.android:securestoragelibrary:1.2.4 java.lang.IllegalArgumentException: Bad arguments javax.crypto.Cipher.doFinal(Cipher.java:2109) android.security.keystore2.AndroidKeyStoreCipherSpiBase.engineDoFinal(AndroidKeyStoreCipherSpiBase.java:582)...
I am getting the below error while i am running my android app. I use the version **de.adorsys.android:securestoragelibrary:1.2.2** Error Logs: E/System: Unable to open zip file: /data/app/com.test.exampleapp-KjSh2vtbJfurEYExgpkYGA==/base.apk E/System: java.io.FileNotFoundException: /data/app/com.test.exampleapp-KjSh2vtbJfurEYExgpkYGA==/base.apk...
Is it using android key stores to store credentials securely on device ??
When attempting to store an ordered set such as a `LinkedHashSet` the ordering is lost. This is due to [using a HashSet](https://github.com/adorsys/secure-storage-android/blob/a6345b64f1ff2f27037f613e57050f0f20604762/securestoragelibrary/src/main/java/de/adorsys/android/securestoragelibrary/SecurePreferences.java#L236) when retrieving set values.
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:...
The `contains` 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:...