summaryrefslogtreecommitdiff
path: root/www/password.php
diff options
context:
space:
mode:
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.";
-}