public class DigestAuthenticationProvider extends Object implements AuthenticationProvider
Constructor and Description |
---|
DigestAuthenticationProvider() |
Modifier and Type | Method and Description |
---|---|
static String |
generateDigest(String idPassword) |
String |
getScheme()
The String used to represent this provider.
|
String |
getUserName(String id)
id represents the authentication info which is set in server connection.
|
KeeperException.Code |
handleAuthentication(ServerCnxn cnxn,
byte[] authData)
This method is called when a client passes authentication data for this
scheme.
|
boolean |
isAuthenticated()
This method is used to check if the authentication done by this provider
should be used to identify the creator of a node.
|
boolean |
isValid(String id)
Validates the syntax of an id.
|
static void |
main(String[] args)
Call with a single argument of user:pass to generate authdata.
|
boolean |
matches(String id,
String aclExpr)
This method is called to see if the given id matches the given id
expression in the ACL.
|
public String getScheme()
AuthenticationProvider
getScheme
in interface AuthenticationProvider
public static String generateDigest(String idPassword) throws NoSuchAlgorithmException
NoSuchAlgorithmException
public KeeperException.Code handleAuthentication(ServerCnxn cnxn, byte[] authData)
AuthenticationProvider
handleAuthentication
in interface AuthenticationProvider
cnxn
- the cnxn that received the authentication information.authData
- the authentication data received.public boolean isAuthenticated()
AuthenticationProvider
isAuthenticated
in interface AuthenticationProvider
public boolean isValid(String id)
AuthenticationProvider
isValid
in interface AuthenticationProvider
id
- the id to validate.public boolean matches(String id, String aclExpr)
AuthenticationProvider
matches
in interface AuthenticationProvider
id
- the id to check.aclExpr
- the expression to match ids against.public String getUserName(String id)
AuthenticationProvider
getUserName
in interface AuthenticationProvider
id
- authentication info set by client.public static void main(String[] args) throws NoSuchAlgorithmException
args
- single argument of user:passNoSuchAlgorithmException
Copyright © 2008–2020 The Apache Software Foundation. All rights reserved.