summaryrefslogtreecommitdiff
path: root/classes/authenticator/PasswordTrait.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:16:23 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:16:23 +0200
commit7076343338ae3439f3c86f01144818abe8c31978 (patch)
tree794abb1e6b8f821091fd095341885496b6dad51d /classes/authenticator/PasswordTrait.php
parent47cbb529f5723b246125ae083a193e11481b89ef (diff)
downloadclassroom-7076343338ae3439f3c86f01144818abe8c31978.tar.gz
classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.bz2
classroom-7076343338ae3439f3c86f01144818abe8c31978.zip
add container helpers; constuct public directory-tree
Diffstat (limited to 'classes/authenticator/PasswordTrait.php')
-rw-r--r--classes/authenticator/PasswordTrait.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/classes/authenticator/PasswordTrait.php b/classes/authenticator/PasswordTrait.php
deleted file mode 100644
index 22976d8..0000000
--- a/classes/authenticator/PasswordTrait.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-
-
-// namespace DevCoder\Authentication\Core;
-//
-// use DevCoder\Authentication\UserInterface;
-
-/**
- * Trait PasswordTrait
- * @package DevCoder\Authentication\Core
- */
-trait PasswordTrait
-{
- private $cost = 10;
-
- public function cryptPassword(string $plainPassword): string
- {
- return password_hash(
- $plainPassword,
- PASSWORD_BCRYPT,
- ['cost' => $this->cost]
- );
- }
-
- public function isPasswordValid(UserInterface $user, string $plainPassword): bool
- {
- return password_verify(
- $plainPassword,
- $user->getPassword()
- );
- }
-
- public function setCost(int $cost): void
- {
- if ($cost < 4 || $cost > 12) {
- throw new \InvalidArgumentException('Cost must be in the range of 4-31.');
- }
- $this->cost = $cost;
- }
-}