public enum PropertyEncryptionMethod extends Enum<PropertyEncryptionMethod>
EncryptionMethod| Enum Constant and Description |
|---|
NIFI_ARGON2_AES_GCM_128 |
NIFI_ARGON2_AES_GCM_256 |
NIFI_BCRYPT_AES_GCM_128 |
NIFI_BCRYPT_AES_GCM_256 |
NIFI_PBKDF2_AES_GCM_128 |
NIFI_PBKDF2_AES_GCM_256 |
NIFI_SCRYPT_AES_GCM_128 |
NIFI_SCRYPT_AES_GCM_256 |
| Modifier and Type | Field and Description |
|---|---|
private EncryptionMethod |
encryptionMethod |
private static int |
HASH_LENGTH_DIVISOR |
private int |
hashLength |
private KeyDerivationFunction |
keyDerivationFunction |
private int |
keyLength |
| Modifier and Type | Method and Description |
|---|---|
EncryptionMethod |
getEncryptionMethod() |
int |
getHashLength() |
KeyDerivationFunction |
getKeyDerivationFunction() |
int |
getKeyLength() |
static PropertyEncryptionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyEncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyEncryptionMethod NIFI_ARGON2_AES_GCM_128
public static final PropertyEncryptionMethod NIFI_ARGON2_AES_GCM_256
public static final PropertyEncryptionMethod NIFI_BCRYPT_AES_GCM_128
public static final PropertyEncryptionMethod NIFI_BCRYPT_AES_GCM_256
public static final PropertyEncryptionMethod NIFI_PBKDF2_AES_GCM_128
public static final PropertyEncryptionMethod NIFI_PBKDF2_AES_GCM_256
public static final PropertyEncryptionMethod NIFI_SCRYPT_AES_GCM_128
public static final PropertyEncryptionMethod NIFI_SCRYPT_AES_GCM_256
private static final int HASH_LENGTH_DIVISOR
private final KeyDerivationFunction keyDerivationFunction
private final EncryptionMethod encryptionMethod
private final int keyLength
private final int hashLength
public static PropertyEncryptionMethod[] values()
for (PropertyEncryptionMethod c : PropertyEncryptionMethod.values()) System.out.println(c);
public static PropertyEncryptionMethod 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 KeyDerivationFunction getKeyDerivationFunction()
public EncryptionMethod getEncryptionMethod()
public int getKeyLength()
public int getHashLength()
Copyright © 2023 Apache NiFi Project. All rights reserved.