Class HashingAlgorithm

java.lang.Object
io.vertx.reactivex.ext.auth.hashing.HashingAlgorithm
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class HashingAlgorithm extends Object implements io.vertx.lang.rx.RxDelegate
Hashing Algorithm. A common interface to interact with any system provided algorithms.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<HashingAlgorithm> __TYPE_ARG
  • Constructor Details

    • HashingAlgorithm

      public HashingAlgorithm(HashingAlgorithm delegate)
    • HashingAlgorithm

      public HashingAlgorithm(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public HashingAlgorithm getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • 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)