public enum KeyDerivationFunction extends Enum<KeyDerivationFunction>
| Enum Constant and Description |
|---|
ARGON2 |
BCRYPT |
NIFI_LEGACY |
NONE |
OPENSSL_EVP_BYTES_TO_KEY |
PBKDF2 |
SCRYPT |
| Modifier and Type | Field and Description |
|---|---|
private String |
description |
private String |
kdfName |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
String |
getKdfName() |
boolean |
hasFormattedSalt() |
boolean |
isStrongKDF() |
String |
toString() |
static KeyDerivationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyDerivationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyDerivationFunction NONE
public static final KeyDerivationFunction NIFI_LEGACY
public static final KeyDerivationFunction OPENSSL_EVP_BYTES_TO_KEY
public static final KeyDerivationFunction BCRYPT
public static final KeyDerivationFunction SCRYPT
public static final KeyDerivationFunction PBKDF2
public static final KeyDerivationFunction ARGON2
public static KeyDerivationFunction[] values()
for (KeyDerivationFunction c : KeyDerivationFunction.values()) System.out.println(c);
public static KeyDerivationFunction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getKdfName()
public String getDescription()
public boolean isStrongKDF()
public boolean hasFormattedSalt()
public String toString()
toString in class Enum<KeyDerivationFunction>Copyright © 2022 Apache NiFi Project. All rights reserved.