summaryrefslogtreecommitdiff
path: root/classes/authenticator/PasswordTrait.php
diff options
context:
space:
mode:
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;
- }
-}