summaryrefslogtreecommitdiff
path: root/includes/crypt.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/crypt.php')
-rw-r--r--includes/crypt.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/includes/crypt.php b/includes/crypt.php
deleted file mode 100644
index 8de22030..00000000
--- a/includes/crypt.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
- function PassCrypt($passwort) {
- include "../../config/config.php";
-
- switch ($crypt_system) {
- case "crypt":
- return "{crypt}" . crypt($passwort, "77");
- case "md5":
- return md5($passwort);
- }
- }
-?>