Hi,
Does anyone know if there is a tutorial or video on how to encrypt user data. I know passwords are already encrypted and non recoverable rightly so, but is there a way data (eg. personal user data) can be encrypted in the database but the user can still view or edit it through the UI on Frontend.
Sorry, I’ll explain:
When I go to application data I can see the data for every user. How can i encrypt this data so that I can not see it or anyone else who has access to the database.
In effect this would only allow registered users to look at the data from the app UI after Login. Does that make sense?
You can encode it using different way (and some plugins may help). You will need to decode it to display too in front end. This mean that you cannot use autobinding and only use workflows
Not exactly the same case.
I believe that the initial request here is to avoid backend user to be able to read data from the App Data tab. I think this can be achieved this way. The real security is handled by Bubble.
BUT… I’m thinking that… Bubble have a feature: Log in as user… So if the backend user click on it… he will be able to view data in the frontend using this way anyway…
Its no problem for the backend user to see his own user information in the front ui, as long as he’s logged in with his credentials.
I’m basically trying to put user privacy content as one, if not the most important features of the app. This means no one except users who sign up can see their own data. I or any other employee building the app should not be able to see any private user data held in the app, whether its in the database or anywhere else.
This is the statement on the app that I am trying to achieve:
Securing Your Data at Rest
Within our systems, all your data is stored using AES-256 encryption.
Our strict internal procedures prevents any employee or administrator from gaining access to your account or data as it is encrypted.
Can I achieve this in bubble, storing all data using AES-256 encryption?
Thanks NigelG.
Any direction, tutorial, documentation on how I can do that, store it encrypted on another database? How can I retrieve it to display it on the UI for each user that logs in. I have no idea where to start. Do I choose amazon or google or something else for my database how do I set it up as an encrypted database. I pretty much need help with everything.