Uses of Class
org.bouncycastle.crypto.internal.DataLengthException
Packages that use DataLengthException
Package
Description
-
Uses of DataLengthException in org.bouncycastle.crypto.internal
Subclasses of DataLengthException in org.bouncycastle.crypto.internalMethods in org.bouncycastle.crypto.internal that throw DataLengthExceptionModifier and TypeMethodDescriptionintBufferedBlockCipher.doFinal(byte[] out, int outOff) intDefaultBufferedBlockCipher.doFinal(byte[] out, int outOff) Process the last block in the buffer.intDefaultBufferedMultiBlockCipher.doFinal(byte[] out, int outOff) Process the last block in the buffer.intMac.doFinal(byte[] out, int outOff) Compute the final stage of the MAC writing the output to the out parameter.intDerivationFunction.generateBytes(byte[] out, int outOff, int len) byte[]Signer.generateSignature()generate a signature for the message we've been loaded with using the key we were initialised with.intBlockCipher.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.intDefaultMultiBlockCipher.processBlocks(byte[] in, int inOff, int blockCount, byte[] out, int outOff) intMultiBlockCipher.processBlocks(byte[] in, int inOff, int blockCount, byte[] out, int outOff) Process blockCount blocks from input in offset inOff and place the output in out from offset outOff.intBufferedBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) intDefaultBufferedBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process an array of bytes, producing output if necessary.intDefaultBufferedMultiBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process an array of bytes, producing output if necessary.intStreamBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) intStreamCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process a block of bytes from in putting the result into out.voidMac.update(byte[] in, int inOff, int len) -
Uses of DataLengthException in org.bouncycastle.crypto.internal.macs
Methods in org.bouncycastle.crypto.internal.macs that throw DataLengthExceptionModifier and TypeMethodDescriptionintAEADCipherMac.doFinal(byte[] out, int outOff) intGMac.doFinal(byte[] out, int outOff) intTruncatingMac.doFinal(byte[] out, int outOff) voidAEADCipherMac.update(byte[] in, int inOff, int len) voidGMac.update(byte[] in, int inOff, int len) voidTruncatingMac.update(byte[] in, int inOff, int len) -
Uses of DataLengthException in org.bouncycastle.crypto.internal.modes
Methods in org.bouncycastle.crypto.internal.modes that throw DataLengthExceptionModifier and TypeMethodDescriptionprotected byteCFBBlockCipher.calculateByte(byte in) protected byteOFBBlockCipher.calculateByte(byte in) protected byteSICBlockCipher.calculateByte(byte in) intCFBBlockCipher.decryptBlock(byte[] in, int inOff, byte[] out, int outOff) Do the appropriate processing for CFB mode decryption.intNISTCTSBlockCipher.doFinal(byte[] out, int outOff) Process the last block in the buffer.intCFBBlockCipher.encryptBlock(byte[] in, int inOff, byte[] out, int outOff) Do the appropriate processing for CFB mode encryption.intCBCBlockCipher.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.intCFBBlockCipher.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.intGCFBBlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff) intGOFBBlockCipher.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.intOFBBlockCipher.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.intOpenPGPCFBBlockCipher.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.intSICBlockCipher.processBlock(byte[] in, int inOff, byte[] out, int outOff) intAEADCipher.processByte(byte in, byte[] out, int outOff) encrypt/decrypt a single byte.intCCMBlockCipher.processByte(byte in, byte[] out, int outOff) intEAXBlockCipher.processByte(byte in, byte[] out, int outOff) intGCMBlockCipher.processByte(byte in, byte[] out, int outOff) intOCBBlockCipher.processByte(byte input, byte[] output, int outOff) intAEADCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process a block of bytes from in putting the result into out.intCCMBlockCipher.processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff) intEAXBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) intGCMBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) intNISTCTSBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process an array of bytes, producing output if necessary.intOCBBlockCipher.processBytes(byte[] input, int inOff, int len, byte[] output, int outOff) intCCMBlockCipher.processPacket(byte[] in, int inOff, int inLen, byte[] output, int outOff) Process a packet of data for either CCM decryption or encryption. -
Uses of DataLengthException in org.bouncycastle.crypto.internal.paddings
Methods in org.bouncycastle.crypto.internal.paddings that throw DataLengthExceptionModifier and TypeMethodDescriptionintPaddedBufferedBlockCipher.doFinal(byte[] out, int outOff) Process the last block in the buffer.intPaddedBufferedMultiBlockCipher.doFinal(byte[] out, int outOff) Process the last block in the buffer.intPaddedBufferedBlockCipher.processByte(byte in, byte[] out, int outOff) process a single byte, producing an output block if neccessary.intPaddedBufferedBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process an array of bytes, producing output if necessary.intPaddedBufferedMultiBlockCipher.processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) process an array of bytes, producing output if necessary. -
Uses of DataLengthException in org.bouncycastle.crypto.internal.signers
Methods in org.bouncycastle.crypto.internal.signers that throw DataLengthExceptionModifier and TypeMethodDescriptionbyte[]BaseRsaDigestSigner.generateSignature()Generate a signature for the message we've been loaded with using the key we were initialised with.