On 7/12/06, Felix Ingram <[EMAIL PROTECTED]> wrote: > On 7/12/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
<snip> > So whack the following into a script or type it into a interactive session > > import sha, random > raw_password = <PUT YOUR PASSWORD HERE (Don't leave it in clear in a > script though)> > algo = 'sha1' > salt = sha.new(str(random.random())).hexdigest()[:5] > hsh = sha.new(salt+raw_password).hexdigest() > print "%s$%s$%s" % (algo, salt, hsh) I've put the above on the wiki (http://code.djangoproject.com/wiki/AdminApplication) which is off the common pitfalls page. Someone can move it to somewhere more appropriate if need be. People could then point to this rather than explain to newbies how helpful they are on #django. F. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---