top | item 10095245 Different password encryption implementations 2 points| ziad-saab | 10 years ago |github.com | reply 1 comment order hn newest [+] [-] ziad-saab|10 years ago|reply One of my favourite ones: public static function encryptPassword($password) { return strrev(sha1(strtolower($password)).sha1(strtoupper($password))); }
[+] [-] ziad-saab|10 years ago|reply One of my favourite ones: public static function encryptPassword($password) { return strrev(sha1(strtolower($password)).sha1(strtoupper($password))); }
[+] [-] ziad-saab|10 years ago|reply