Package io.vertx.reactivex.ext.auth
Class HashingAlgorithm
- java.lang.Object
-
- io.vertx.reactivex.ext.auth.HashingAlgorithm
-
public class HashingAlgorithm extends Object
Hashing Algorithm. A common interface to interact with any system provided algorithms. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<HashingAlgorithm>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description HashingAlgorithm(io.vertx.ext.auth.HashingAlgorithm delegate)HashingAlgorithm(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)io.vertx.ext.auth.HashingAlgorithmgetDelegate()inthashCode()Stringid()return the symbolic name for the algorithmbooleanneedsSeparator()Should the encoded string use the default separator to split fields.static HashingAlgorithmnewInstance(io.vertx.ext.auth.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(io.vertx.ext.auth.HashingAlgorithm delegate)
-
HashingAlgorithm
public HashingAlgorithm(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.auth.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(io.vertx.ext.auth.HashingAlgorithm arg)
-
-