Class SCRAMClientSASL
- java.lang.Object
-
- org.apache.activemq.artemis.protocol.amqp.sasl.scram.SCRAMClientSASL
-
- All Implemented Interfaces:
ClientSASL
public class SCRAMClientSASL extends Object implements ClientSASL
implements the client part of SASL-SCRAM for broker interconnect
-
-
Constructor Summary
Constructors Modifier Constructor Description SCRAMClientSASL(SCRAM scram, String username, String password)protectedSCRAMClientSASL(SCRAM scram, String username, String password, String nonce)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getInitialResponse()StringgetName()byte[]getResponse(byte[] challenge)static booleanisApplicable(String username, String password)
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceClientSASL
-
getInitialResponse
public byte[] getInitialResponse()
- Specified by:
getInitialResponsein interfaceClientSASL
-
getResponse
public byte[] getResponse(byte[] challenge)
- Specified by:
getResponsein interfaceClientSASL
-
-