See qa-db-users.php, it is SHA1. Here is the exact code:
sha1(substr($salt, 0, 8).$password.substr($salt, 8));
The passsalt field in the database is the password salt (a random character string stored with each password). And passcheck is the actual encrypted password generated via the code above.