Class AbstractAnonymousFactory
java.lang.Object
org.wildfly.security.sasl.util.AbstractSaslFactory
org.wildfly.security.sasl.anonymous.AbstractAnonymousFactory
- Direct Known Subclasses:
AnonymousClientFactory,AnonymousServerFactory
A base class for the anonymous factories to verify from the properties supplied if anonymous
can be used.
- Author:
- Darran Lofthouse
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanDetermine whether the mechanism is susceptible to dictionary (passive) attacks.protected booleanDetermine whether the algorithm employs plain text.Methods inherited from class org.wildfly.security.sasl.util.AbstractSaslFactory
getMechanismNames, getPropertyValue, isActiveSusceptible, isAnonymous, isForwardSecrecy, isIncluded, isPassCredentials, matches
-
Constructor Details
-
AbstractAnonymousFactory
protected AbstractAnonymousFactory()Construct a new instance.
-
-
Method Details
-
isDictionarySusceptible
protected boolean isDictionarySusceptible()Description copied from class:AbstractSaslFactoryDetermine whether the mechanism is susceptible to dictionary (passive) attacks.- Overrides:
isDictionarySusceptiblein classAbstractSaslFactory- Returns:
trueif it is (default istrue)
-
isPlainText
protected boolean isPlainText()Description copied from class:AbstractSaslFactoryDetermine whether the algorithm employs plain text.- Overrides:
isPlainTextin classAbstractSaslFactory- Returns:
trueif it does so (default istrue)
-