質問編集履歴
2
文字追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
phpmyadminでhash化されたパスワードをログイン入力画面より、password_verifyを使い、DBのpassと入力されたpassが一致していたらtrueを返し、ログインが成功させるようにしたい。
|
4
4
|
|
5
5
|
*今回は新規登録を作成していないので、hash化はphpMyAdminのインサート機能を用い、passのhash化。
|
6
|
+
|
7
|
+
↓phpMyAdmin ver 5.1.1最新
|
8
|
+
|
9
|
+
![イメージ説明](25ee36894bbd543b17b666ebb2f76b62.png)
|
6
10
|
|
7
11
|
|
8
12
|
|
1
文字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
'email' => string 'manage@gmail.com' (length=16)
|
58
58
|
|
59
|
-
'password' => string '$2y$10$4ZBlg3yy9rq5l1GbIkhr..PDgRV93ChTRjQ1ud8wEf0.osGIKSxz.' (length=60)
|
59
|
+
'password' => string '$2y$10$4ZBlg3yy9rq5l1GbIkhr..PDgRV93ChTRjQ1ud8wEf0.osGIKSxz.' (length=60)
|
60
60
|
|
61
61
|
'role' => string '1' (length=1)
|
62
62
|
|
@@ -67,6 +67,10 @@
|
|
67
67
|
string '1010' (length=4)
|
68
68
|
|
69
69
|
```
|
70
|
+
|
71
|
+
'password' => string '$2y$10$4ZBlg3yy9rq5l1GbIkhr..PDgRV93ChTRjQ1ud8wEf0.osGIKSxz.' (length=60)
|
72
|
+
|
73
|
+
このハッシュは'1010'をハッシュ化しています。
|
70
74
|
|
71
75
|
|
72
76
|
|