You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
242 B
PHTML

<?php
14 years ago
function PassCrypt($passwort) {
14 years ago
include "../../config/config.php";
14 years ago
switch ($crypt_system) {
case "crypt":
return "{crypt}" . crypt($passwort, "77");
case "md5":
return md5($passwort);
}
}
?>