Introduction
As Android developers we need to secure the data we store in our android apps. This is to objectively ensure the three triads: Confidentiality, Integrity and Availability. Password Based Encryption is an encryption technique used for providing with strong encryption keys to encrypt room persistent data away from attackers or hackers.
Key Takeaways
- Generate a random key
- SQLCipher key formats
- Create a hex encoded db key
- PBE encrypt + store the database key
- Restore + decrypt the database key
- Encrypt your Room database
References
https://developer.android.com/training/data-storage/room)
Introduction
As Android developers we need to secure the data we store in our android apps. This is to objectively ensure the three triads: Confidentiality, Integrity and Availability. Password Based Encryption is an encryption technique used for providing with strong encryption keys to encrypt room persistent data away from attackers or hackers.
Key Takeaways
References
https://developer.android.com/training/data-storage/room)