summaryrefslogtreecommitdiff
path: root/www/password.php
diff options
context:
space:
mode:
authormoehm2014-03-21 18:40:44 +0100
committermoehm2014-03-21 18:40:44 +0100
commitcd7aeaef26bf05e42e789da6bc4a97118c40d616 (patch)
tree1a253657f8ee29fb09dd9b9f03251b0ee6eae41a /www/password.php
parent08e945b89d649759f40916877f40044657314d9a (diff)
downloadfiles.iamfabulous.de-cd7aeaef26bf05e42e789da6bc4a97118c40d616.tar.gz
The index.php starts the download. Also extra function to print empty folders.
Diffstat (limited to 'www/password.php')
-rw-r--r--www/password.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/www/password.php b/www/password.php
deleted file mode 100644
index 2808fe4..0000000
--- a/www/password.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?
-
-$hash = password_hash($_GET["password"], PASSWORD_DEFAULT);
-if(password_verify($_GET["password"], $hash)){
- echo $hash;
-} else {
- echo "Not verified.";
-}