public enum SymmetricKeyAlgorithm extends Enum<SymmetricKeyAlgorithm>
| Enum Constant and Description |
|---|
AES_128 |
AES_192 |
AES_256 |
CAMELLIA_128 |
CAMELLIA_192 |
CAMELLIA_256 |
| Modifier and Type | Field and Description |
|---|---|
private BlockCipher |
blockCipher |
private int |
id |
private int |
keySize |
| Modifier and Type | Method and Description |
|---|---|
BlockCipher |
getBlockCipher() |
int |
getId() |
int |
getKeySize() |
static SymmetricKeyAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymmetricKeyAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymmetricKeyAlgorithm AES_128
public static final SymmetricKeyAlgorithm AES_192
public static final SymmetricKeyAlgorithm AES_256
public static final SymmetricKeyAlgorithm CAMELLIA_128
public static final SymmetricKeyAlgorithm CAMELLIA_192
public static final SymmetricKeyAlgorithm CAMELLIA_256
private BlockCipher blockCipher
private int keySize
private int id
public static SymmetricKeyAlgorithm[] values()
for (SymmetricKeyAlgorithm c : SymmetricKeyAlgorithm.values()) System.out.println(c);
public static SymmetricKeyAlgorithm 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 BlockCipher getBlockCipher()
public int getKeySize()
public int getId()
Copyright © 2022 Apache NiFi Project. All rights reserved.