public enum EncryptionAlgorithm extends Enum<EncryptionAlgorithm>
The algorithms for encryption
| Enum Constant and Description |
|---|
AES |
Blowfish |
Camellia |
CAST5 |
CAST6 |
DES |
DESede |
Noekeon |
RC2 |
RC5 |
RC6 |
Rijndael |
RSA |
SEED |
Serpent |
Skipjack |
TEA |
Twofish |
XTEA |
| Modifier and Type | Method and Description |
|---|---|
EncrypterBuilder |
getBuilder() |
EncrypterBuilderFactory |
getFactory() |
int |
getMaxKeySize() |
int |
getMinKeySize() |
int |
getMinSize() |
void |
setFactory(EncrypterBuilderFactory factory) |
void |
setMinSize(int minSize) |
static EncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionAlgorithm AES
public static final EncryptionAlgorithm Blowfish
public static final EncryptionAlgorithm DES
public static final EncryptionAlgorithm DESede
public static final EncryptionAlgorithm Camellia
public static final EncryptionAlgorithm CAST5
public static final EncryptionAlgorithm CAST6
public static final EncryptionAlgorithm Noekeon
public static final EncryptionAlgorithm Rijndael
public static final EncryptionAlgorithm SEED
public static final EncryptionAlgorithm Serpent
public static final EncryptionAlgorithm Skipjack
public static final EncryptionAlgorithm TEA
public static final EncryptionAlgorithm Twofish
public static final EncryptionAlgorithm XTEA
public static final EncryptionAlgorithm RC2
public static final EncryptionAlgorithm RC5
public static final EncryptionAlgorithm RC6
public static final EncryptionAlgorithm RSA
public static EncryptionAlgorithm[] values()
for (EncryptionAlgorithm c : EncryptionAlgorithm.values()) System.out.println(c);
public static EncryptionAlgorithm 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 int getMinKeySize()
public int getMaxKeySize()
public EncrypterBuilder getBuilder()
public int getMinSize()
public void setMinSize(int minSize)
public EncrypterBuilderFactory getFactory()
public void setFactory(EncrypterBuilderFactory factory)
Copyright © 2024 MuleSoft, Inc.. All rights reserved.