On 5 Sty, 17:49, Eric Chamberlain <e...@rf.com> wrote: > There's nothing special about settings.py. You could do something like: > > from Crypto.Cipher import Blowfish > > blowme = Blowfish.new(SECRET_KEY) > DATABASE_PASSWORD = blowme.decrypt(ENCRYPTED_PASSWORD) > > Securing SECRET_KEY is left as an exercise for the reader.
It's piece of cake: blowme0 = Blowfish.new(SECRET_KEY0) SECRET_KEY = blowme0.decrypt(ENCRYPTED_SECRET_KEY) ;-) -- Tomasz Zielinski http://pyconsultant.eu
-- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.