We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently library is using following method to get password for decryption, which is always constant.
private fun getPassword(): String { val uuid = (getSign() + getUUID()) return getSHA256(uuid) ?: uuid }
Passwords should be generated randomly for each sesssion and stored securely, like Android Keystore system: https://developer.android.com/training/articles/keystore
The text was updated successfully, but these errors were encountered:
Hi, Thanks for submitting the issue. I will investigate this as soon as possible.
Sorry, something went wrong.
No branches or pull requests
Currently library is using following method to get password for decryption, which is always constant.
Passwords should be generated randomly for each sesssion and stored securely, like Android Keystore system: https://developer.android.com/training/articles/keystore
The text was updated successfully, but these errors were encountered: