public enum KeyDerivationFunction extends Enum<KeyDerivationFunction>
Enum Constant and Description |
---|
BCRYPT |
NIFI_LEGACY |
NONE |
OPENSSL_EVP_BYTES_TO_KEY |
PBKDF2 |
SCRYPT |
Modifier and Type | Field and Description |
---|---|
private String |
description |
private String |
name |
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
getName() |
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 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 NONE
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 getName()
public String getDescription()
public boolean isStrongKDF()
public String toString()
toString
in class Enum<KeyDerivationFunction>
Copyright © 2016 Apache NiFi Project. All rights reserved.