Uses of Class
javax.crypto.ShortBufferException

Packages that use ShortBufferException
javax.crypto This package defines the main JCE 1.2 classes. 
 

Uses of ShortBufferException in javax.crypto
 

Methods in javax.crypto that throw ShortBufferException
 int Cipher.update(byte[] input, int inputOffset, int inputLen, byte[] output)
          Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
 int Cipher.update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
 int Cipher.doFinal(byte[] output, int outputOffset)
          Finishes a multiple-part encryption or decryption operation, depending on how this cipher was initialized.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output)
          Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
 void Mac.doFinal(byte[] output, int outOffset)
          Finishes the MAC operation.
 int KeyAgreement.generateSecret(byte[] sharedSecret, int offset)
          Generates the shared secret, and places it into the buffer sharedSecret, beginning at offset.
protected abstract  int KeyAgreementSpi.engineGenerateSecret(byte[] sharedSecret, int offset)
          Generates the shared secret, and places it into the buffer sharedSecret, beginning at offset.
 int NullCipher.update(byte[] input, int inputOffset, int inputLen, byte[] output)
           
 int NullCipher.update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
           
 int NullCipher.doFinal(byte[] output, int outputOffset)
           
 int NullCipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output)
           
 int NullCipher.doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
           
protected abstract  int CipherSpi.engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
protected abstract  int CipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
          Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.