public enum EncryptionPadding extends Enum<EncryptionPadding>
The paddings for encryption
| Enum Constant and Description |
|---|
PKCS1PADDING |
PKCS5Padding |
| Modifier and Type | Method and Description |
|---|---|
static EncryptionPadding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionPadding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionPadding PKCS5Padding
public static final EncryptionPadding PKCS1PADDING
public static EncryptionPadding[] values()
for (EncryptionPadding c : EncryptionPadding.values()) System.out.println(c);
public static EncryptionPadding 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 © 2019 MuleSoft, Inc.. All rights reserved.