public static enum EncryptionInfo.Algorithm extends Enum<EncryptionInfo.Algorithm>
Enum Constant and Description |
---|
AES128_CBC |
AES128_WRAP |
AES192_CBC |
AES256_CBC |
AES256_WRAP |
CAMELLIA128_CBC |
CAMELLIA128_WRAP |
CAMELLIA192_CBC |
CAMELLIA192_WRAP |
CAMELLIA256_CBC |
CAMELLIA256_WRAP |
CAST5_CBC |
DES_EDE3_CBC |
DES_EDE3_WRAP |
ECDH_SHA1KDF |
IDEA_CBC |
RC2_CBC |
SEED_CBC |
SEED_WRAP |
Modifier and Type | Method and Description |
---|---|
static EncryptionInfo.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionInfo.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionInfo.Algorithm DES_EDE3_CBC
public static final EncryptionInfo.Algorithm RC2_CBC
public static final EncryptionInfo.Algorithm IDEA_CBC
public static final EncryptionInfo.Algorithm CAST5_CBC
public static final EncryptionInfo.Algorithm AES128_CBC
public static final EncryptionInfo.Algorithm AES192_CBC
public static final EncryptionInfo.Algorithm AES256_CBC
public static final EncryptionInfo.Algorithm CAMELLIA128_CBC
public static final EncryptionInfo.Algorithm CAMELLIA192_CBC
public static final EncryptionInfo.Algorithm CAMELLIA256_CBC
public static final EncryptionInfo.Algorithm SEED_CBC
public static final EncryptionInfo.Algorithm DES_EDE3_WRAP
public static final EncryptionInfo.Algorithm AES128_WRAP
public static final EncryptionInfo.Algorithm AES256_WRAP
public static final EncryptionInfo.Algorithm CAMELLIA128_WRAP
public static final EncryptionInfo.Algorithm CAMELLIA192_WRAP
public static final EncryptionInfo.Algorithm CAMELLIA256_WRAP
public static final EncryptionInfo.Algorithm SEED_WRAP
public static final EncryptionInfo.Algorithm ECDH_SHA1KDF
public static EncryptionInfo.Algorithm[] values()
for (EncryptionInfo.Algorithm c : EncryptionInfo.Algorithm.values()) System.out.println(c);
public static EncryptionInfo.Algorithm 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 nullCopyright © 2010–2016 AdroitLogic. All rights reserved.