Package io.vertx.reactivex.ext.auth
Class HashingAlgorithm
- java.lang.Object
-
- io.vertx.reactivex.ext.auth.HashingAlgorithm
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<HashingAlgorithm>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description HashingAlgorithm(HashingAlgorithm delegate)HashingAlgorithm(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)HashingAlgorithmgetDelegate()inthashCode()Stringid()return the symbolic name for the algorithmbooleanneedsSeparator()Should the encoded string use the default separator to split fields.static HashingAlgorithmnewInstance(HashingAlgorithm arg)Set<String>params()return the list of param names required for this algorithm.StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<HashingAlgorithm> __TYPE_ARG
-
-
Constructor Detail
-
HashingAlgorithm
public HashingAlgorithm(HashingAlgorithm delegate)
-
HashingAlgorithm
public HashingAlgorithm(Object delegate)
-
-
Method Detail
-
getDelegate
public HashingAlgorithm getDelegate()
-
id
public String id()
return the symbolic name for the algorithm- Returns:
- short id e.g.: sha512.
-
params
public Set<String> params()
return the list of param names required for this algorithm.- Returns:
- set of param names.
-
needsSeparator
public boolean needsSeparator()
Should the encoded string use the default separator to split fields.- Returns:
- true by default.
-
newInstance
public static HashingAlgorithm newInstance(HashingAlgorithm arg)
-
-