- All Implemented Interfaces:
Serializable
,Comparable<PaddingScheme>
,Constable
The enum
PaddingScheme
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe No padding.The OAEP padding.The OAEP with SHA 1 and MGF 1 padding.The OAEP with SHA 256 and MGF 1 padding.The OAEP with SHA 1 and MGF 1 padding.The OAEP with SHA 256 and MGF 1 padding.The enum constant for the 'PKCS1Padding' algorithmThe enum constant for the 'PKCS5Padding' algorithmThe enum constant for the 'SSL3Padding' algorithmThe constant 'UNKNOWN' if the padding scheme is not known or cannot be resolved -
Method Summary
Modifier and TypeMethodDescriptionstatic PaddingScheme
Returns the enum constant of this class with the specified name.static PaddingScheme[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NoPadding
The No padding. -
OAEPPadding
The OAEP padding. -
OAEPWithSHA_1AndMGF1Padding
The OAEP with SHA 1 and MGF 1 padding. -
OAEPWithSHA_256AndMGF1Padding
The OAEP with SHA 256 and MGF 1 padding. -
OAEPWithSHA1AndMGF1Padding
The OAEP with SHA 1 and MGF 1 padding. -
OAEPWithSHA256AndMGF1Padding
The OAEP with SHA 256 and MGF 1 padding. -
PKCS1Padding
The enum constant for the 'PKCS1Padding' algorithm -
PKCS5Padding
The enum constant for the 'PKCS5Padding' algorithm -
SSL3Padding
The enum constant for the 'SSL3Padding' algorithm -
UNKNOWN
The constant 'UNKNOWN' if the padding scheme is not known or cannot be resolved
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getScheme
-