public class CipherNone extends java.lang.Object implements Cipher
Cipher.Mode
Constructor and Description |
---|
CipherNone() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAlgorithm() |
int |
getCipherBlockSize() |
int |
getIVSize() |
int |
getKdfSize() |
int |
getKeySize() |
java.lang.String |
getTransformation() |
void |
init(Cipher.Mode mode,
byte[] key,
byte[] iv)
Initialize the cipher for encryption or decryption with the given key and initialization vector
|
void |
update(byte[] input,
int inputOffset,
int inputLen)
Performs in-place encryption or decryption on the given data.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
checkSupported, update
public java.lang.String getAlgorithm()
getAlgorithm
in interface AlgorithmNameProvider
public int getKeySize()
getKeySize
in interface KeySizeIndicator
public java.lang.String getTransformation()
getTransformation
in interface CipherInformation
public int getIVSize()
getIVSize
in interface CipherInformation
public int getKdfSize()
getKdfSize
in interface CipherInformation
public int getCipherBlockSize()
getCipherBlockSize
in interface CipherInformation
public void init(Cipher.Mode mode, byte[] key, byte[] iv) throws java.lang.Exception
Cipher
public void update(byte[] input, int inputOffset, int inputLen) throws java.lang.Exception
Cipher