public interface CipherConst
Modifier and Type | Field and Description |
---|---|
static int |
CBC
Constant used to define cipher mode CBC
|
static int |
CFB
Constant used to define cipher mode CFB
|
static int |
CNT
Constant used to define cipher mode CNT
|
static int |
DECRYPT_MODE
Constant used to initialize cipher to decryption mode.
|
static int |
ECB
Constant used to define cipher mode ECB
|
static int |
ENCRYPT_MODE
Constant used to initialize cipher to encryption mode.
|
static java.lang.String[] |
MODES
available modes strings
|
static int |
PADDING_ANSI_X923
Constant used to define cipher used ANSI x923 padding (zero bytes fill, with the length at the end)
|
static int |
PADDING_ISO1012
Constant used to define cipher used ISO 1012 padding (random bytes fill, with the length at the end)
|
static int |
PADDING_NO
Constant used to define cipher padding not used
|
static int |
PADDING_PKCS5
Constant used to define cipher used pkcs5 padding (8-x) bytes filled by (8-x)
|
static int |
PADDING_RANDOM
Constant used to define cipher used random padding (random last (8-x) bytes)
|
static int |
PADDING_ZERO
Constant used to define cipher used zero padding (zeros last (8-x) bytes)
|
static java.lang.String[] |
PADDINGS
available paddings strings
|
static int |
PRIVATE_KEY
Constant used to indicate the to-be-unwrapped key is a "private key".
|
static int |
PUBLIC_KEY
Constant used to indicate the to-be-unwrapped key is a "public key".
|
static int |
SECRET_KEY
Constant used to indicate the to-be-unwrapped key is a "secret key".
|
static int |
UNWRAP_MODE
Constant used to initialize cipher to key-unwrapping mode.
|
static int |
WRAP_MODE
Constant used to initialize cipher to key-wrapping mode.
|
static final int ENCRYPT_MODE
static final int DECRYPT_MODE
static final int WRAP_MODE
static final int UNWRAP_MODE
static final int ECB
static final int CFB
static final int CNT
static final int CBC
static final java.lang.String[] MODES
static final int PADDING_NO
static final int PADDING_ZERO
static final int PADDING_RANDOM
static final int PADDING_PKCS5
static final int PADDING_ANSI_X923
static final int PADDING_ISO1012
static final java.lang.String[] PADDINGS
static final int PUBLIC_KEY
static final int PRIVATE_KEY
static final int SECRET_KEY