public abstract class EncryptionHeader extends Object
Modifier and Type | Field and Description |
---|---|
static int |
ALGORITHM_AES_128 |
static int |
ALGORITHM_AES_192 |
static int |
ALGORITHM_AES_256 |
static int |
ALGORITHM_RC4 |
static int |
HASH_NONE |
static int |
HASH_SHA1 |
static int |
HASH_SHA256 |
static int |
HASH_SHA384 |
static int |
HASH_SHA512 |
static int |
MODE_CBC |
static int |
MODE_CFB |
static int |
MODE_ECB |
static int |
PROVIDER_AES |
static int |
PROVIDER_RC4 |
Modifier | Constructor and Description |
---|---|
protected |
EncryptionHeader() |
Modifier and Type | Method and Description |
---|---|
int |
getAlgorithm()
Deprecated.
use getCipherAlgorithm()
|
int |
getBlockSize() |
ChainingMode |
getChainingMode() |
CipherAlgorithm |
getCipherAlgorithm() |
int |
getCipherMode()
Deprecated.
use getChainingMode().ecmaId
|
CipherProvider |
getCipherProvider() |
String |
getCspName() |
int |
getFlags() |
int |
getHashAlgorithm()
Deprecated.
use getHashAlgorithmEx()
|
HashAlgorithm |
getHashAlgorithmEx() |
byte[] |
getKeySalt() |
int |
getKeySize() |
int |
getProviderType()
Deprecated.
use getCipherProvider()
|
int |
getSizeExtra() |
protected void |
setBlockSize(int blockSize) |
protected void |
setChainingMode(ChainingMode chainingMode) |
protected void |
setCipherAlgorithm(CipherAlgorithm cipherAlgorithm) |
protected void |
setCipherProvider(CipherProvider providerType) |
protected void |
setCspName(String cspName) |
protected void |
setFlags(int flags) |
protected void |
setHashAlgorithm(HashAlgorithm hashAlgorithm) |
protected void |
setKeySalt(byte[] salt) |
protected void |
setKeySize(int keyBits) |
protected void |
setSizeExtra(int sizeExtra) |
public static final int ALGORITHM_RC4
public static final int ALGORITHM_AES_128
public static final int ALGORITHM_AES_192
public static final int ALGORITHM_AES_256
public static final int HASH_NONE
public static final int HASH_SHA1
public static final int HASH_SHA256
public static final int HASH_SHA384
public static final int HASH_SHA512
public static final int PROVIDER_RC4
public static final int PROVIDER_AES
public static final int MODE_ECB
public static final int MODE_CBC
public static final int MODE_CFB
public int getCipherMode()
public ChainingMode getChainingMode()
protected void setChainingMode(ChainingMode chainingMode)
public int getFlags()
protected void setFlags(int flags)
public int getSizeExtra()
protected void setSizeExtra(int sizeExtra)
public int getAlgorithm()
public CipherAlgorithm getCipherAlgorithm()
protected void setCipherAlgorithm(CipherAlgorithm cipherAlgorithm)
public int getHashAlgorithm()
public HashAlgorithm getHashAlgorithmEx()
protected void setHashAlgorithm(HashAlgorithm hashAlgorithm)
public int getKeySize()
protected void setKeySize(int keyBits)
public int getBlockSize()
protected void setBlockSize(int blockSize)
public byte[] getKeySalt()
protected void setKeySalt(byte[] salt)
public int getProviderType()
public CipherProvider getCipherProvider()
protected void setCipherProvider(CipherProvider providerType)
public String getCspName()
protected void setCspName(String cspName)
Copyright © 2007-2019. All Rights Reserved.