Class 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 Detail

      • __TYPE_ARG

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

      • HashingAlgorithm

        public HashingAlgorithm​(Object delegate)
    • Method Detail

      • 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.