Uses of Class
javax.crypto.IllegalBlockSizeException

Packages that use IllegalBlockSizeException
com.entrust.toolkit.security.provider Contains classes that implement various signature algorithms and the Entrust Provider. 
javax.crypto   
 

Uses of IllegalBlockSizeException in com.entrust.toolkit.security.provider
 

Methods in com.entrust.toolkit.security.provider that throw IllegalBlockSizeException
 byte[] RSA.engineDoFinal(byte[] input, int inputOffset, int inputLen)
           This method takes the keys provided during the initialization phase, and encrypts a block of data.
protected  int RSA.engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
           This method takes the keys provided during the initialization phase, and encrypts a block of data.
 byte[] RSAPKCS11.engineDoFinal(byte[] input, int inputOffset, int inputLen)
          This method takes the keys provided during the initialization phase, and encrypts a block of data.
protected  int RSAPKCS11.engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          This method takes the keys provided during the initialization phase, and encrypts a block of data.
 

Uses of IllegalBlockSizeException in javax.crypto
 

Methods in javax.crypto that throw IllegalBlockSizeException
protected abstract  byte[] CipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLen)
          Returns the result of the last step of a multi-step en/decryption operation or the result of a single-step en/decryption operation by processing the given input data and any remaining buffered data.
protected abstract  int CipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Performs the last step of a multi-step en/decryption operation or a single-step en/decryption operation by processing the given input data and any remaining buffered data.
 byte[] Cipher.doFinal()
          Returns the result of the last step of a multi-step en/decryption operation by processing any remaining buffered data.
 int Cipher.doFinal(byte[] output, int outputOffset)
          Performs the last step of a multi-step en/decryption operation by processing any remaining buffered data.
 byte[] Cipher.doFinal(byte[] input)
          Returns the result of the last step of a multi-step en/decryption operation or the result of a single-step en/decryption operation by processing the given input data and any remaining buffered data.
 byte[] Cipher.doFinal(byte[] input, int inputOffset, int inputLen)
          Returns the result of the last step of a multi-step en/decryption operation or the result of a single-step en/decryption operation by processing the given input data and any remaining buffered data.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output)
          Performs the last step of a multi-step en/decryption operation or a single-step en/decryption operation by processing the given input data and any remaining buffered data.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Performs the last step of a multi-step en/decryption operation or a single-step en/decryption operation by processing the given input data and any remaining buffered data.
 java.lang.Object SealedObject.getObject(Cipher c)
          Returns he original Serializable object from which this SealedObject has been created.
 

Constructors in javax.crypto that throw IllegalBlockSizeException
SealedObject.SealedObject(java.io.Serializable object, Cipher c)
          Creates a SealedObject from the given Serializable object using the given Cipher for encryption.