This commit is contained in:
2022-03-29 10:42:26 +02:00
parent 395693612a
commit 04890228bb
694 changed files with 4094 additions and 21 deletions

43
passwords.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
echo "cryptage de admin <br>";
echo password_hash("admin",PASSWORD_BCRYPT);
echo"<br>";
echo "cryptage de test<br>";
echo password_hash("test",PASSWORD_BCRYPT);
echo"<br>";
echo "cryptage de solo<br>";
echo password_hash("solo",PASSWORD_BCRYPT);
echo"<br>";
echo "cryptage de 12Notes<br>";
echo password_hash("12Notes",PASSWORD_BCRYPT);
echo"<br>";
echo "cryptage de toto<br>";
echo password_hash("toto",PASSWORD_BCRYPT);
echo "<br>";
echo "cryptage de sweet<br>";
echo password_hash("sweet",PASSWORD_BCRYPT);
echo "<br>";
?>
?>