Wednesday, September 27, 2017

Encrypt Directory in Django

I am trying to save a customer generated report in pdf format. I have used django file field to store the pdf. 

"models.FileField(upload_to='directory/pdfdirectory')"

Since it will be user-generated pdf and will be different for each user, 

Also along with making a custom subdirectory for every user (one encrypted folder per user), there may be multiple files within that.

Link if there are 100 users then all that 100 subdirectories should be encrypted.

What might be best possible way to implement the encryption part ?

Thanks in advance !

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/278347b3-4ec9-411c-b7ae-58f4ac7ed30e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment