function mysql_41_password($pw)
{
if (strlen($pw) > 0) {
if (substr($pw,0,1) == “*”)
return $pw;
else
return strtoupper(‘*’.sha1(sha1($pw,true)));
}
else {
return null;
}
}