public abstract class SecretVerifier extends Object implements Verifier
ChallengeResponse
. If the verification is
successful, it automatically adds a new User
for the given
identifier.RESULT_INVALID, RESULT_MISSING, RESULT_STALE, RESULT_UNKNOWN, RESULT_UNSUPPORTED, RESULT_VALID
Constructor and Description |
---|
SecretVerifier() |
Modifier and Type | Method and Description |
---|---|
static boolean |
compare(char[] secret1,
char[] secret2)
Compares that two secrets are equal.
|
protected String |
getIdentifier(Request request,
Response response)
Returns the user identifier.
|
protected char[] |
getSecret(Request request,
Response response)
Returns the secret provided by the user.
|
int |
verify(Request request,
Response response)
Verifies that the proposed secret is correct for the specified request.
|
abstract boolean |
verify(String identifier,
char[] secret)
Verifies that the identifier/secret couple is valid.
|
public static boolean compare(char[] secret1, char[] secret2)
secret1
- The input secret.secret2
- The output secret.protected String getIdentifier(Request request, Response response)
request
- The request to inspect.response
- The response to inspect.protected char[] getSecret(Request request, Response response)
request
- The request to inspect.response
- The response to inspect.public int verify(Request request, Response response)
ChallengeResponse.getSecret()
method and sets the User
instance of the
request's ClientInfo
if successful.public abstract boolean verify(String identifier, char[] secret) throws IllegalArgumentException
identifier
- The user identifier to match.secret
- The provided secret to verify.IllegalArgumentException
- In case the identifier is unknown.Copyright © 2005–2016. All rights reserved.