Package org.jivesoftware.openfire.auth
Class DefaultAuthProvider
java.lang.Object
org.jivesoftware.openfire.auth.DefaultAuthProvider
- All Implemented Interfaces:
AuthProvider
Default AuthProvider implementation. It authenticates against the
ofUser
database table and supports plain text and digest authentication.
Because each call to authenticate() makes a database connection, the
results of authentication should be cached whenever possible.- Author:
- Matt Tucker
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe length of the salt used to generate salted passwords. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidauthenticate(String username, String password) Returns if the username and password are valid; otherwise this method throws an UnauthorizedException.booleancheckPassword(String username, String testPassword) intgetIterations(String username) Deprecated, for removal: This API element is subject to removal in a future version.getPassword(String username) Returns the user's password.Deprecated, for removal: This API element is subject to removal in a future version.getScramCredential(String username, String mechanism) Returns SCRAM credentials for a user and mechanism.getServerKey(String username) Deprecated, for removal: This API element is subject to removal in a future version.getStoredKey(String username) Deprecated, for removal: This API element is subject to removal in a future version.booleanvoidsetPassword(String username, String password) Sets the user's password.booleanReturns true if this UserProvider is able to retrieve user passwords from the backend user store.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jivesoftware.openfire.auth.AuthProvider
getIterations, getSalt, getServerKey, getStoredKey
-
Field Details
-
SALT_LENGTH
public static final int SALT_LENGTHThe length of the salt used to generate salted passwords.- See Also:
-
-
Constructor Details
-
DefaultAuthProvider
public DefaultAuthProvider()Constructs a new DefaultAuthProvider.
-
-
Method Details
-
getSalt
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AuthProviderReturns a SCRAM-SHA-1 salt for a user.- Specified by:
getSaltin interfaceAuthProvider- Throws:
UserNotFoundException
-
getIterations
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AuthProviderReturns a SCRAM-SHA-1 iteration count for a user.- Specified by:
getIterationsin interfaceAuthProvider- Throws:
UserNotFoundException
-
getStoredKey
@Deprecated(forRemoval=true) public String getStoredKey(String username) throws UserNotFoundException Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AuthProviderReturns a SCRAM-SHA-1 stored key for a user.- Specified by:
getStoredKeyin interfaceAuthProvider- Throws:
UserNotFoundException
-
getServerKey
@Deprecated(forRemoval=true) public String getServerKey(String username) throws UserNotFoundException Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:AuthProviderReturns a SCRAM-SHA-1 server key for a user.- Specified by:
getServerKeyin interfaceAuthProvider- Throws:
UserNotFoundException
-
getScramCredential
public ScramCredentialData getScramCredential(String username, String mechanism) throws UnsupportedOperationException, UserNotFoundException Returns SCRAM credentials for a user and mechanism. OnlySCRAM-SHA-1is supported. When SHA-1 credentials are missing but a plaintext (or decryptable) password is available, the credentials are regenerated (preserving the historical behavior of this provider).- Specified by:
getScramCredentialin interfaceAuthProvider- Parameters:
username- the username of the user.mechanism- the SCRAM mechanism name.- Returns:
- the SCRAM credentials for the user under the (normalized) mechanism.
- Throws:
UnsupportedOperationException- if the mechanism is notSCRAM-SHA-1.UserNotFoundException- if the user's credentials could not be loaded.
-
authenticate
Description copied from interface:AuthProviderReturns if the username and password are valid; otherwise this method throws an UnauthorizedException.- Specified by:
authenticatein interfaceAuthProvider- Parameters:
username- the username or full JID.password- the password- Throws:
UnauthorizedException- if the username and password do not match any existing user.
-
getPassword
Description copied from interface:AuthProviderReturns the user's password. This method should throw an UnsupportedOperationException if this operation is not supported by the backend user store.- Specified by:
getPasswordin interfaceAuthProvider- Parameters:
username- the username of the user.- Returns:
- the user's password.
- Throws:
UserNotFoundException- if the given user's password could not be loaded.
-
checkPassword
- Throws:
UserNotFoundException
-
setPassword
Description copied from interface:AuthProviderSets the user's password. This method should throw an UnsupportedOperationException if this operation is not supported by the backend user store.- Specified by:
setPasswordin interfaceAuthProvider- Parameters:
username- the username of the user.password- the new plaintext password for the user.- Throws:
UserNotFoundException- if the given user could not be loaded.
-
supportsPasswordRetrieval
public boolean supportsPasswordRetrieval()Description copied from interface:AuthProviderReturns true if this UserProvider is able to retrieve user passwords from the backend user store. If this operation is not supported thenAuthProvider.getPassword(String)will throw anUnsupportedOperationExceptionif invoked.- Specified by:
supportsPasswordRetrievalin interfaceAuthProvider- Returns:
- true if this UserProvider is able to retrieve user passwords from the backend user store.
-
isScramSupported
public boolean isScramSupported()- Specified by:
isScramSupportedin interfaceAuthProvider
-