public class IllegalBlockSizeException
extends java.lang.RuntimeException
Copyright © 1997
Systemics Ltd on behalf of the
Cryptix Development Team.
All rights reserved.
$Revision: 1.3 $
Modifier and Type | Field and Description |
---|---|
int |
blockSize
Deprecated.
Use getBlockSize().
|
int |
dataSize
Deprecated.
Use getDataSize().
|
Constructor and Description |
---|
IllegalBlockSizeException(int blockSize,
int dataSize)
Constructs an IllegalBlockSizeException with the specified
block size and illegal data size.
|
IllegalBlockSizeException(int blockSize,
int dataSize,
java.lang.String message)
Constructs an IllegalBlockSizeException with the specified
block size, illegal data size, and detail message.
|
IllegalBlockSizeException(java.lang.String message)
Constructs an IllegalBlockSizeException with the specified
detail message.
|
Modifier and Type | Method and Description |
---|---|
int |
getBlockSize()
Gets the block size of the cipher (or 0 if this was not set).
|
int |
getDataSize()
Gets the size of the data passed to the cipher (or 0 if this
was not set).
|
public int blockSize
public int dataSize
public IllegalBlockSizeException(java.lang.String message)
message
- the detail message.public IllegalBlockSizeException(int blockSize, int dataSize)
The detail message is set to "blockSize = " +
blockSize + ", dataSize = " + dataSize
.
blockSize
- the block size of the cipher.dataSize
- the illegal size of the data passed to the cipher.public IllegalBlockSizeException(int blockSize, int dataSize, java.lang.String message)
This constructor is not supported in JavaSoft's version of JCE.
blockSize
- the block size of the cipher.dataSize
- the illegal size of the data passed to the cipher.message
- the detail message.