forked from nette/security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasswords.php
More file actions
74 lines (59 loc) · 1.49 KB
/
Copy pathPasswords.php
File metadata and controls
74 lines (59 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Security;
use Nette;
/**
* Password Hashing.
*/
class Passwords
{
use Nette\SmartObject;
/**
* Chooses which secure algorithm is used for hashing and how to configure it.
* @see https://php.net/manual/en/password.constants.php
*/
public function __construct(
private string $algo = PASSWORD_DEFAULT,
private array $options = [],
) {
}
/**
* Computes password´s hash. The result contains the algorithm ID and its settings, cryptographical salt and the hash itself.
*/
public function hash(
#[\SensitiveParameter]
string $password
): string
{
if ($password === '') {
throw new Nette\InvalidArgumentException('Password can not be empty.');
}
$hash = @password_hash($password, $this->algo, $this->options); // @ is escalated to exception
if (!$hash) {
throw new Nette\InvalidStateException('Computed hash is invalid. ' . error_get_last()['message']);
}
return $hash;
}
/**
* Finds out, whether the given password matches the given hash.
*/
public function verify(
#[\SensitiveParameter]
string $password,
string $hash
): bool
{
return password_verify($password, $hash);
}
/**
* Finds out if the hash matches the options given in constructor.
*/
public function needsRehash(string $hash): bool
{
return password_needs_rehash($hash, $this->algo, $this->options);
}
}