public enum KeyPairWithModeAndPaddingAlgorithm extends Enum<KeyPairWithModeAndPaddingAlgorithm> implements Algorithm
KeyPairWithModeAndPaddingAlgorithm.| Enum Constant and Description |
|---|
DESede_CBC_PKCS5Padding
The enum constant with the 'DESede' algorithm with mode 'CBC' and padding 'PKCS5Padding' that
results in 'DESede/CBC/PKCS5Padding'.
|
RSA_ECB_OAEPWithSHA_1AndMGF1Padding
The enum constant with the 'RSA' algorithm with mode 'ECB' and padding
'OAEPWithSHA-1AndMGF1Padding' that results in 'RSA/ECB/OAEPWithSHA-1AndMGF1Padding'.
|
RSA_ECB_OAEPWithSHA_256AndMGF1Padding
The enum constant with the 'RSA' algorithm with mode 'ECB' and padding
'OAEPWithSHA-256AndMGF1Padding' that results in 'RSA/ECB/OAEPWithSHA-256AndMGF1Padding'.
|
RSA_ECB_OAEPWithSHA1AndMGF1Padding
The enum constant with the 'RSA' algorithm with mode 'ECB' and padding
'OAEPWithSHA1AndMGF1Padding' that results in 'RSA/ECB/OAEPWithSHA1AndMGF1Padding'.
|
RSA_ECB_OAEPWithSHA256AndMGF1Padding
The enum constant with the 'RSA' algorithm with mode 'ECB' and padding
'OAEPWithSHA256AndMGF1Padding' that results in 'RSA/ECB/OAEPWithSHA256AndMGF1Padding'.
|
RSA_ECB_PKCS1PADDING
The enum constant with the 'RSA' algorithm with mode 'ECB' and padding 'PKCS1Padding' that
results in 'RSA/ECB/PKCS1Padding'.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyPairWithModeAndPaddingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyPairWithModeAndPaddingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetAlgorithmpublic static final KeyPairWithModeAndPaddingAlgorithm DESede_CBC_PKCS5Padding
public static final KeyPairWithModeAndPaddingAlgorithm RSA_ECB_OAEPWithSHA_1AndMGF1Padding
public static final KeyPairWithModeAndPaddingAlgorithm RSA_ECB_OAEPWithSHA_256AndMGF1Padding
public static final KeyPairWithModeAndPaddingAlgorithm RSA_ECB_OAEPWithSHA1AndMGF1Padding
public static final KeyPairWithModeAndPaddingAlgorithm RSA_ECB_OAEPWithSHA256AndMGF1Padding
public static final KeyPairWithModeAndPaddingAlgorithm RSA_ECB_PKCS1PADDING
public static KeyPairWithModeAndPaddingAlgorithm[] values()
for (KeyPairWithModeAndPaddingAlgorithm c : KeyPairWithModeAndPaddingAlgorithm.values()) System.out.println(c);
public static KeyPairWithModeAndPaddingAlgorithm 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 © 2015–2019 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.