All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.descope.enums.BatchUserPasswordAlgorithm Maven / Gradle / Ivy

There is a newer version: 1.0.30
Show newest version
package com.descope.enums;

import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;

public enum BatchUserPasswordAlgorithm {
  BATCH_USER_PASSWORD_ALGORITHM_BCRYPT("bcrypt"),
  BATCH_USER_PASSWORD_ALGORITHM_PBKDF2SHA1("pbkdf2sha1"),
  BATCH_USER_PASSWORD_ALGORITHM_PBKDF2SHA256("pbkdf2sha256"),
  BATCH_USER_PASSWORD_ALGORITHM_PBKDF2SHA512("pbkdf2sha512");

  @Getter
  @JsonValue
  private final String value;

  BatchUserPasswordAlgorithm(String value) {
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy