initial commit

This commit is contained in:
root
2024-06-03 16:43:53 +03:00
commit 21e3fd0797
1535 changed files with 60499 additions and 0 deletions

14
junet/html/index.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
include 'encrypt_password.inc.php';
include 'hash_gen.inc.php';
include 'decrypt_password.inc.php';
$password = $_REQUEST['password'];
$en_pwd = encrypt_password($password);
echo "Given Passowrd: ".$password."<br>";
echo "Encrypted Password for database: ".$en_pwd." <br>";
echo "Hash value of given password: ".gen_hash($password)."<br>";
echo "Decrypted Password from the database: ".decrypt_password(strlen($password),$en_pwd);
?>