Different password encryption implementationsgithub.com/search 2 pointsziad-saab11 years ago1 commentSaveHideCopy link On HNComments−ziad-saabOP11yOne of my favourite ones: public static function encryptPassword($password) { return strrev(sha1(strtolower($password)).sha1(strtoupper($password))); }
Comments
One of my favourite ones: