engelsystem/inc/crypt.php

19 lines
240 B
PHP
Executable File

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