Uses of Class
com.digt.trusted.crypto.DataLengthException

Packages that use DataLengthException
com.digt.trusted.crypto   
com.digt.trusted.crypto.engines   
com.digt.trusted.crypto.modes   
com.digt.trusted.crypto.paddings   
 

Uses of DataLengthException in com.digt.trusted.crypto
 

Methods in com.digt.trusted.crypto that throw DataLengthException
 int BufferedBlockCipher.doFinal(byte[] out, int outOff)
          Process the last block in the buffer.
 int Mac.doFinal(byte[] out, int outOff)
          Compute the final statge of the MAC writing the output to the out parameter.
 byte[] Signer.generateSignature()
          generate a signature for the message we've been loaded with using the key we were initialised with.
 int BlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff)
          Process one block of input from the array in and write it to the out array.
 int BlockCipher.processBlocks(byte[] in, int inOff, byte[] out, int outOff, int blocks)
          Process the number of blocks of input from the array in and write it to the out array.
 int BufferedBlockCipher.processByte(byte in, byte[] out, int outOff)
          process a single byte, producing an output block if neccessary.
 int BufferedBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
          process an array of bytes, producing output if necessary.
 void StreamBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
          process a block of bytes from in putting the result into out.
 void StreamCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
          process a block of bytes from in putting the result into out.
 void Mac.update(byte[] in, int inOff, int len)
           
 

Uses of DataLengthException in com.digt.trusted.crypto.engines
 

Methods in com.digt.trusted.crypto.engines that throw DataLengthException
 int GOST28147Engine.processBlock(byte[] in, int inOff, byte[] out, int outOff)
          Process one block of input from the array in and write it to the out array.
 int GOST28147Engine.processBlock(byte[] in, int inOff, int length, byte[] out, int outOff)
          Deprecated. Replaced by processBytes(byte[], int, int, byte[], int) since 2.0.
 int GOST28147Engine.processBlocks(byte[] in, int inOff, byte[] out, int outOff, int blocks)
          Process the number of blocks of input from the array in and write it to the out array.
 void GOST28147Engine.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
          Process an array of bytes from in putting the result into out.
 

Uses of DataLengthException in com.digt.trusted.crypto.modes
 

Methods in com.digt.trusted.crypto.modes that throw DataLengthException
 int CFBBlockCipher.decryptBlock(byte[] in, int inOff, byte[] out, int outOff)
          Do the appropriate processing for CFB mode decryption.
 int CFBBlockCipher.encryptBlock(byte[] in, int inOff, byte[] out, int outOff)
          Do the appropriate processing for CFB mode encryption.
 int CBCBlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff)
          Process one block of input from the array in and write it to the out array.
 int CFBBlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff)
          Process one block of input from the array in and write it to the out array.
 int OFBBlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff)
          Process one block of input from the array in and write it to the out array.
 int CBCBlockCipher.processBlocks(byte[] in, int inOff, byte[] out, int outOff, int blocks)
          Process the number of blocks of input from the array in and write it to the out array.
 int CFBBlockCipher.processBlocks(byte[] in, int inOff, byte[] out, int outOff, int blocks)
          Process the number of blocks of input from the array in and write it to the out array.
 int OFBBlockCipher.processBlocks(byte[] in, int inOff, byte[] out, int outOff, int blocks)
          Process the number of blocks of input from the array in and write it to the out array.
 

Uses of DataLengthException in com.digt.trusted.crypto.paddings
 

Methods in com.digt.trusted.crypto.paddings that throw DataLengthException
 int PaddedBufferedBlockCipher.doFinal(byte[] out, int outOff)
          Process the last block in the buffer.
 int PaddedBufferedBlockCipher.processByte(byte in, byte[] out, int outOff)
          process a single byte, producing an output block if neccessary.
 int PaddedBufferedBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
          process an array of bytes, producing output if necessary.