summaryrefslogtreecommitdiff
path: root/tests/register.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/register.php')
-rw-r--r--tests/register.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/register.php b/tests/register.php
deleted file mode 100644
index 7f778af..0000000
--- a/tests/register.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-$userManager = new UserManager();
-
-$password = $userManager->cryptPassword('102030!!!');
-
-$user = (new User())
- ->setUserName('geo@roptron.gr')
- ->setPassword($password)
- ->setRoles([1]);
-
-$userManager->createUserToken($user);
-
-
-$algos = [
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 10 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 10 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 10 ]),
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 9 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 9 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 9 ]),
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 11 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 11 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 11 ]),
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 12 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 12 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 12 ]),
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 8 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 8 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 8 ]),
- password_hash('root1234', PASSWORD_DEFAULT, ['cost' => 7 ]),
- password_hash('root1234', PASSWORD_ARGON2I, ['cost' => 7 ]),
- password_hash('root1234', CRYPT_BLOWFISH, ['cost' => 7 ])
-
-]
-?><pre><?php
-
-foreach($algos as $a) {
- echo $a ."\n";
-}
-
-
-
-?></pre> \ No newline at end of file