MySQL supports sha1 with the sha() function. If you want to change your password in the db you can just use UPDATE table_name SET password = sha('newpassword') WHERE username = 'yourusername';
(replace the fields/table name with the ones for your table).
There are also various websites that will compute a sha1 hash for you.
|