Class HashStrategy
- java.lang.Object
-
- io.vertx.reactivex.ext.auth.mongo.HashStrategy
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<HashStrategy>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description HashStrategy(HashStrategy delegate)HashStrategy(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringcomputeHash(String password, User user)Deprecated.booleanequals(Object o)HashStrategygetDelegate()StringgetSalt(User user)Deprecated.HashSaltStylegetSaltStyle()Deprecated.StringgetStoredPwd(User user)Deprecated.inthashCode()static HashStrategynewInstance(HashStrategy arg)voidsetAlgorithm(HashAlgorithm algorithm)Deprecated.voidsetExternalSalt(String salt)Deprecated.voidsetSaltStyle(HashSaltStyle saltStyle)Deprecated.StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<HashStrategy> __TYPE_ARG
-
-
Constructor Detail
-
HashStrategy
public HashStrategy(HashStrategy delegate)
-
HashStrategy
public HashStrategy(Object delegate)
-
-
Method Detail
-
getDelegate
public HashStrategy getDelegate()
-
computeHash
@Deprecated public String computeHash(String password, User user)
Deprecated.Compute the hashed password given the unhashed password and the user- Parameters:
password- the unhashed passworduser- the user to get the salt for. This paramter is needed, if the is declared to be used- Returns:
- the hashed password
-
getStoredPwd
@Deprecated public String getStoredPwd(User user)
Deprecated.Retrieve the password from the user, or as clear text or as hashed version, depending on the definition- Parameters:
user- the user to get the stored password for- Returns:
- the password, either as hashed version or as cleartext, depending on the preferences
-
getSalt
@Deprecated public String getSalt(User user)
Deprecated.Retrieve the salt. The source of the salt can be the external salt or the propriate column of the given user, depending on the definedHashSaltStyle- Parameters:
user- the user to get the salt for. This paramter is needed, if the is declared to be used- Returns:
- null in case of the salt of the user or a defined external salt
-
setExternalSalt
@Deprecated public void setExternalSalt(String salt)
Deprecated.Set an external salt. This method should be used in case of- Parameters:
salt- the salt, which shall be used
-
setSaltStyle
@Deprecated public void setSaltStyle(HashSaltStyle saltStyle)
Deprecated.Set the saltstyle as defined byHashSaltStyle.- Parameters:
saltStyle- theHashSaltStyleto be used
-
getSaltStyle
@Deprecated public HashSaltStyle getSaltStyle()
Deprecated.Get the definedHashSaltStyleof the current instance- Returns:
- the saltStyle
-
setAlgorithm
@Deprecated public void setAlgorithm(HashAlgorithm algorithm)
Deprecated.Allows the selection of the hashing algorithm.- Parameters:
algorithm- the choosen algorithm
-
newInstance
public static HashStrategy newInstance(HashStrategy arg)
-
-