Wt
3.3.8
|
A module that implements authentication functions. More...
Classes | |
class | Wt::Auth::FacebookService |
OAuth service for Facebook as third-party authenticator. More... | |
class | Wt::Auth::GoogleService |
OAuth service for Google as third-party authenticator. More... | |
class | Wt::Auth::PasswordStrengthValidator |
A default implementation for password strength validation. More... | |
class | Wt::Auth::AbstractPasswordService |
Abstract password authentication service. More... | |
class | Wt::Auth::AbstractUserDatabase |
Abstract interface for an authentication user database. More... | |
class | Wt::Auth::AuthModel |
Model for implementing an authentication view. More... | |
class | Wt::Auth::EmailTokenResult |
The result of processing an email-sent token. More... | |
class | Wt::Auth::AuthTokenResult |
The result of processing an authentication token. More... | |
class | Wt::Auth::AuthService |
Basic authentication service. More... | |
class | Wt::Auth::AuthWidget |
An authentication widget. More... | |
class | Wt::Auth::Dbo::AuthInfo< UserType > |
A default implementation for authentication data in Wt::Dbo. More... | |
class | Wt::Auth::Dbo::AuthToken< AuthInfoType > |
A default implementation for an authentication token in Wt::Dbo. More... | |
class | Wt::Auth::Dbo::AuthIdentity< AuthInfoType > |
A default implementation for a authentication identity in Wt::Dbo. More... | |
class | Wt::Auth::Dbo::UserDatabase< DboType > |
A default implementation for an authentication user database. More... | |
class | Wt::Auth::FormBaseModel |
A base model class for authentication-related forms. More... | |
class | Wt::Auth::HashFunction |
An abstract cryptographic hash function interface. More... | |
class | Wt::Auth::MD5HashFunction |
A cryptograhpic hash function implemented using MD5. More... | |
class | Wt::Auth::SHA1HashFunction |
A cryptographic hash function implemented using SHA1. More... | |
class | Wt::Auth::BCryptHashFunction |
An cryptographic hash function that implements bcrypt. More... | |
class | Wt::Auth::Identity |
A class that represents a user identity. More... | |
class | Wt::Auth::Login |
A class that manages the current login state. More... | |
class | Wt::Auth::LostPasswordWidget |
A widget which initiates a lost-password email. More... | |
class | Wt::Auth::OAuthAccessToken |
An OAuth access token. More... | |
class | Wt::Auth::OAuthProcess |
An OAuth authorization (and authentication) process. More... | |
class | Wt::Auth::OAuthService |
An OAuth authorization (and authentication) service provider. More... | |
class | Wt::Auth::OidcProcess |
An OpenId Connect authentication process. More... | |
class | Wt::Auth::OidcService |
An OpenId Connect authentication service provider. More... | |
class | Wt::Auth::PasswordHash |
A password hash. More... | |
class | Wt::Auth::PasswordPromptDialog |
A dialog that prompts for the user password. More... | |
class | Wt::Auth::PasswordService |
Password authentication service. More... | |
class | Wt::Auth::PasswordVerifier |
Password hash computation and verification class. More... | |
class | Wt::Auth::RegistrationModel |
Model for implementing a registration view. More... | |
class | Wt::Auth::RegistrationWidget |
A registration widget. More... | |
class | Wt::Auth::Token |
An authentication token hash. More... | |
class | Wt::Auth::UpdatePasswordWidget |
A widget which allows a user to choose a new password. More... | |
class | Wt::Auth::User |
A user. More... | |
Enumerations |
A module that implements authentication functions.
This module implements a complete modular authentication system for Wt applications.
The module is organized in model classes, which implement authentication logic, and view classes which are widgets that implement UI components.
The model layer is organized in a number of service classes, which provide the configuration and authentication services, and are generally shared between different sessions, and session classes which implement the authentication state for each session.
The service classes are:
There are a number of utility classes too:
The session classes are:
The view classes typically use service classes and session classes.
The included views are:
Enumeration of the OAuth client authorization method.
Specifies how the OAuth client authorizes itself with the auth provider. I.e. how it passes the client ID and secret to the provider.
Enumeration for an identity policy.
This enumeration lists possible choices for the user identity (login name).
When using password authentication, it is clear that the user has to provide an identity to login. The only choice is whether you will use the user's email address or another login name.
When using a 3rd party authenticator, e.g. using OAuth, a login name is no longer needed, but you may still want to give the user the opportunity to choose one.
enum Wt::Auth::LoginState |
Enumeration for a login state.
Enumerator | |
---|---|
LoggedOut |
No user is currently identified. |
DisabledLogin |
The identified user was refused to login. This is caused by for example User::status() returning User::Disabled, or if email verification is required but the email hasn't been verified yet. |
WeakLogin |
A user is weakly authenticated. The authentication method was weak, typically this means that a secondary authentication system was used (e.g. an authentication cookie) instead of a primary mechanism (like a password). You may want to allow certain operations, but request to authenticate fully before more senstive operations. |
StrongLogin |
A user is strongly authenticated. |