summaryrefslogtreecommitdiffstats
path: root/lib/private/Authentication/Exceptions
Commit message (Collapse)AuthorAgeFilesLines
* Move ExpiredTokenException to the correct namespaceRoeland Jago Douma2018-10-301-2/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Only allow 2FA state changs if providers support the operationChristoph Wurst2018-09-251-0/+38
| | | | | | | | Ref https://github.com/nextcloud/server/issues/11019. Add `twofactorauth:cleanup` command Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Certain tokens can expireRoeland Jago Douma2018-05-171-0/+41
| | | | | | | | However due to the nature of what we store in the token (encrypted passwords etc). We can't just delete the tokens because that would make the oauth refresh useless. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix othersJoas Schilling2016-07-216-8/+12
|
* add PasswordLoginForbiddenExceptionChristoph Wurst2016-06-171-0/+29
|
* Create session tokens for apache auth usersChristoph Wurst2016-05-311-0/+29
|
* Update license headersLukas Reschke2016-05-264-4/+0
|
* Add two factor auth to coreChristoph Wurst2016-05-233-0/+87
|
* token based authChristoph Wurst2016-05-111-0/+29
* Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token