Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Phang Mulianto
maybe you can just modify the create_user function in django , matching the hash algorithm of the other backend, or the other backend matching to the django backend. you choose which one would be the single auth method. and of course the admin interface is just as it, except you need custom metho

Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Gelonida N
Hi Mike, On 11/07/2011 12:15 AM, Mike Dewhirst wrote: > On 7/11/2011 7:43am, Gelonida N wrote: >> >> What would be the easiest way to hook into the password modification >> form, such, that I can calculate two password hashes with different >> salts / alorithms? >> > You need your own auth backend

Re: synchronize django admin interface password with other application passwords

2011-11-06 Thread Mike Dewhirst
On 7/11/2011 7:43am, Gelonida N wrote: Hi, I would like to use the django admin interface for authentification of a web site. However I also have to store a password hash (different algorith / different salt) for another application, such, that both applications can use the same password. What

synchronize django admin interface password with other application passwords

2011-11-06 Thread Gelonida N
Hi, I would like to use the django admin interface for authentification of a web site. However I also have to store a password hash (different algorith / different salt) for another application, such, that both applications can use the same password. What would be the easiest way to hook into the