I have a form in django that stores some info in a database. I want the data submitted through the form to be encrypted when it is submitted (before it goes into the table so that it appears encrypted as it is being sent) and then to be able to decrypt it when retrieving it from the table. Is there a way to achieve this?
Share
Have a look at this question. Your options include SSL or (worse) some javascript-based encryption.