2e86c939
xu
“首次提交”
|
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
75
76
77
78
79
80
|
<?php
namespace app\ht\helpers;
use Yii;
use function array_rand;
use function str_split;
use function count;
use function str_shuffle;
/*
* This file is part of the Dektrium project.
*
* (c) Dektrium project <http://github.com/admin/modules>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Password helper.
*
* @author Dmitry Erofeev <dmeroff@gmail.com>
*/
class Password
{
/**
* Wrapper for yii security helper method.
*
* @param $password
* @return string
*/
public static function hash($password)
{
return Yii::$app->security->generatePasswordHash($password, 10);
}
/**
* Wrapper for yii security helper method.
*
* @param $password
* @param $hash
* @return bool
*/
public static function validate($password, $hash)
{
return Yii::$app->security->validatePassword($password, $hash);
}
/**
* Generates user-friendly random password containing at least one lower case letter, one uppercase letter and one
* digit. The remaining characters in the password are chosen at random from those three sets.
* @see https://gist.github.com/tylerhall/521810
* @param $length
* @return string
*/
public static function generate($length)
{
$sets = [
'abcdefghjkmnpqrstuvwxyz',
'ABCDEFGHJKMNPQRSTUVWXYZ',
'23456789'
];
$all = '';
$password = '';
foreach ($sets as $set) {
$password .= $set[array_rand(str_split($set))];
$all .= $set;
}
$all = str_split($all);
for ($i = 0; $i < $length - count($sets); $i++) {
$password .= $all[array_rand($all)];
}
$password = str_shuffle($password);
return $password;
}
}
|