Different password encryption implementations
1–2 of 2 posts
Re: Different password encryption implementations
#2One of my favourite ones:
public static function encryptPassword($password) {
return strrev(sha1(strtolower($password)).sha1(strtoupper($password)));
}