10 ms·
One of my favourite ones: public static function encryptPassword($password) { return strrev(sha1(strtolower($password)).sha1(strtoupper($password))); }
by ziad-saab 11y ago
One of my favourite ones:
public static function encryptPassword($password) {
return strrev(sha1(strtolower($password)).sha1(strtoupper($password)));
}