summaryrefslogtreecommitdiff
path: root/includes/crypt.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-02 01:09:03 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-02 01:09:03 +0200
commit10683c4759c2c3563ff7ed48b15d12e85cd0631b (patch)
treea6c2b76a3a2c088a86b7a882afefb67424f48334 /includes/crypt.php
parentc90fdf75a26e6abf2434068d4aa3cfcb190eb600 (diff)
counter
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);
- }
- }
-?>