Skip to content

Commit a7626fd

Browse files
committed
update old references
1 parent c81aa2d commit a7626fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hashing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ If you are using the Argon2 algorithm, the `make` method allows you to manage th
7171
7272
#### Verifying A Password Against A Hash
7373

74-
The `check` method allows you to verify that a given plain-text string corresponds to a given hash. However, if you are using the `LoginController` [included with Laravel](/docs/{{version}}/authentication), you will probably not need to use this directly, as this controller automatically calls this method:
74+
The `check` method allows you to verify that a given plain-text string corresponds to a given hash:
7575

7676
if (Hash::check('plain-text', $hashedPassword)) {
7777
// The passwords match...

session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ The `forget` method will remove a piece of data from the session. If you would l
195195

196196
Regenerating the session ID is often done in order to prevent malicious users from exploiting a [session fixation](https://owasp.org/www-community/attacks/Session_fixation) attack on your application.
197197

198-
Laravel automatically regenerates the session ID during authentication if you are using the built-in `LoginController`; however, if you need to manually regenerate the session ID, you may use the `regenerate` method.
198+
Laravel automatically regenerates the session ID during authentication if you are using [Laravel Jetstream](https://jetstream.laravel.com); however, if you need to manually regenerate the session ID, you may use the `regenerate` method.
199199

200200
$request->session()->regenerate();
201201

0 commit comments

Comments
 (0)