Enum Class HttpDigest.Algorithm

java.lang.Object
java.lang.Enum<HttpDigest.Algorithm>
io.helidon.security.providers.httpauth.HttpDigest.Algorithm
All Implemented Interfaces:
Serializable, Comparable<HttpDigest.Algorithm>, Constable
Enclosing class:
HttpDigest

@Deprecated(since="4.5.0", forRemoval=true) public static enum HttpDigest.Algorithm extends Enum<HttpDigest.Algorithm>
Deprecated, for removal: This API element is subject to removal in a future version.
HTTP Digest authentication relies on obsolete MD5-based authentication and will be removed in a future version without replacement
Http digest algorithm. See https://tools.ietf.org/html/rfc2617#page-9. Only MD5 is supported.
  • Enum Constant Details

    • MD5

      public static final HttpDigest.Algorithm MD5
      Deprecated, for removal: This API element is subject to removal in a future version.
      MD5 algorithm.
  • Method Details

    • values

      public static HttpDigest.Algorithm[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static HttpDigest.Algorithm valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getAlgorithm

      public String getAlgorithm()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Get the algorithm string.
      Returns:
      algorithm string as used in RFC