- java.lang.Object
-
- java.lang.Enum<PaddingScheme>
-
- io.github.astrapi69.crypt.api.padding.PaddingScheme
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PaddingScheme>
public enum PaddingScheme extends java.lang.Enum<PaddingScheme>
The enumPaddingScheme
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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' algorithmPKCS5Padding
The enum constant for the 'PKCS5Padding' algorithmSSL3Padding
The enum constant for the 'SSL3Padding' algorithmUNKNOWN
The constant 'UNKNOWN' if the padding scheme is not known or cannot be resolved
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getScheme()
static PaddingScheme
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PaddingScheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NoPadding
public static final PaddingScheme NoPadding
The No padding.
-
OAEPPadding
public static final PaddingScheme OAEPPadding
The OAEP padding.
-
OAEPWithSHA_1AndMGF1Padding
public static final PaddingScheme OAEPWithSHA_1AndMGF1Padding
The OAEP with SHA 1 and MGF 1 padding.
-
OAEPWithSHA_256AndMGF1Padding
public static final PaddingScheme OAEPWithSHA_256AndMGF1Padding
The OAEP with SHA 256 and MGF 1 padding.
-
OAEPWithSHA1AndMGF1Padding
public static final PaddingScheme OAEPWithSHA1AndMGF1Padding
The OAEP with SHA 1 and MGF 1 padding.
-
OAEPWithSHA256AndMGF1Padding
public static final PaddingScheme OAEPWithSHA256AndMGF1Padding
The OAEP with SHA 256 and MGF 1 padding.
-
PKCS1Padding
public static final PaddingScheme PKCS1Padding
The enum constant for the 'PKCS1Padding' algorithm
-
PKCS5Padding
public static final PaddingScheme PKCS5Padding
The enum constant for the 'PKCS5Padding' algorithm
-
SSL3Padding
public static final PaddingScheme SSL3Padding
The enum constant for the 'SSL3Padding' algorithm
-
UNKNOWN
public static final PaddingScheme UNKNOWN
The constant 'UNKNOWN' if the padding scheme is not known or cannot be resolved
-
-
Method Detail
-
values
public static PaddingScheme[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PaddingScheme c : PaddingScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaddingScheme valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getScheme
public java.lang.String getScheme()
-
-