mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
- DigestAuthenticate modification for cakephp 2.X
This commit is contained in:
parent
73e3c3f90d
commit
26a683f36f
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ App::uses('BasicAuthenticate', 'Controller/Component/Auth');
|
|||
* Due to the Digest authentication specification, digest auth requires a special password value. You
|
||||
* can generate this password using `DigestAuthenticate::password()`
|
||||
*
|
||||
* `$digestPass = DigestAuthenticate::password($username, env('SERVER_NAME'), $password);`
|
||||
* `$digestPass = DigestAuthenticate::password($username, $passwordm env('SERVER_NAME'));`
|
||||
*
|
||||
* Its recommended that you store this digest auth only password separate from password hashes used for other
|
||||
* login methods. For example `User.digest_pass` could be used for a digest password, while `User.password` would
|
||||
|
|
Loading…
Reference in a new issue