Re: Storing SSN and other PII in Django

2019-01-15 Thread Jason
There was a djangocon presentation on similar topic: https://www.youtube.com/watch?v=wRro4xv8n6k That said, when it comes to SSNs, I'd just store the last four digits in plaintext and encrypt the rest. oh, and ensure everything is https end to end. all this won't do anything if you're exposi

Storing SSN and other PII in Django

2019-01-14 Thread cpyle
Hey all, My company requires us to store a user's SSN to report business on his or her behalf. I'll admit that I've never built out a django production app, so I'm not sure the best practices for storing PII. Is there any way to encrypt the information on the backend so even the admins like me