summaryrefslogtreecommitdiff
path: root/includes/crypt.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/crypt.php')
-rwxr-xr-xincludes/crypt.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/includes/crypt.php b/includes/crypt.php
deleted file mode 100755
index 9707e719..00000000
--- a/includes/crypt.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-
-function PassCrypt($passwort) {
-include "config.php";
-
-switch ($crypt_system) {
- case "crypt":
- return "{crypt}".crypt($passwort, "77");
- case "md5":
- return md5($passwort);
- }
-
-}
-
-
-
-?>