public static enum DecryptDataDetails.EncryptionAlgorithm extends Enum<DecryptDataDetails.EncryptionAlgorithm>
Encryption algorithm to be used while encrypting/decrypting data using a customer key AES_256_GCM is the supported value AES keys and uses GCM mode of operation RSA_OAEP_SHA_1 and RSA_OAEP_SHA_256 are supported for RSA keys and use OAEP padding.
Enum Constant and Description |
---|
Aes256Gcm |
RsaOaepSha1 |
RsaOaepSha256 |
Modifier and Type | Method and Description |
---|---|
static DecryptDataDetails.EncryptionAlgorithm |
create(String key) |
String |
getValue() |
static DecryptDataDetails.EncryptionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecryptDataDetails.EncryptionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecryptDataDetails.EncryptionAlgorithm Aes256Gcm
public static final DecryptDataDetails.EncryptionAlgorithm RsaOaepSha1
public static final DecryptDataDetails.EncryptionAlgorithm RsaOaepSha256
public static DecryptDataDetails.EncryptionAlgorithm[] values()
for (DecryptDataDetails.EncryptionAlgorithm c : DecryptDataDetails.EncryptionAlgorithm.values()) System.out.println(c);
public static DecryptDataDetails.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 String getValue()
public static DecryptDataDetails.EncryptionAlgorithm create(String key)
Copyright © 2016–2021. All rights reserved.