Fix alias computation.
[platal.git] / include / secure_hash.inc.php
index e7b3585..52a62cf 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2006 Polytechnique.org                              *
+ *  Copyright (C) 2003-2008 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -18,7 +18,7 @@
  *  Foundation, Inc.,                                                      *
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
+
 function hash_encrypt($s) {
     return sha1($s);
 }
@@ -37,5 +37,5 @@ function hash_xor($a, $b) {
         $c .= $a{$k};
     return $c;
 }
-
-?>
\ No newline at end of file
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
+?>