1 comment

[ 3.4 ms ] story [ 10.6 ms ] thread
One of my favourite ones:

  public static function encryptPassword($password) {
    return strrev(sha1(strtolower($password)).sha1(strtoupper($password)));
  }