Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.crypto.BadPaddingException

Uses of BadPaddingException in javax.crypto
 

Methods in javax.crypto that throw BadPaddingException
 java.lang.Object SealedObject.getObject(Cipher cipher)
          Unseal and deserialize this sealed object with a specified (already initialized) cipher.
private  java.lang.Object SealedObject.unseal()
          Unseal this object, returning it.
protected  byte[] NullCipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLen)
           
protected  int NullCipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset)
           
protected abstract  byte[] CipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLength)
          Finishes a multi-part transformation or transforms a portion of a byte array, and returns the transformed bytes.
protected abstract  int CipherSpi.engineDoFinal(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset)
          Finishes a multi-part transformation or transforms a portion of a byte array, and stores the transformed bytes in the supplied array.
protected  int CipherSpi.engineDoFinal(java.nio.ByteBuffer input, java.nio.ByteBuffer output)
           
 byte[] Cipher.doFinal()
          Finishes a multi-part transformation, and returns the final transformed bytes.
 byte[] Cipher.doFinal(byte[] input)
          Finishes a multi-part transformation or does an entire transformation on the input, and returns the transformed bytes.
 byte[] Cipher.doFinal(byte[] input, int inputOffset, int inputLength)
          Finishes a multi-part transformation or does an entire transformation on the input, and returns the transformed bytes.
 int Cipher.doFinal(byte[] output, int outputOffset)
          Finishes a multi-part transformation and stores the transformed bytes into the given array.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLength, byte[] output, int outputOffset)
          Finishes a multi-part transformation or transforms a portion of a byte array, and stores the result in the given byte array.
 int Cipher.doFinal(byte[] input, int inputOffset, int inputLength, byte[] output)
           
 int Cipher.doFinal(java.nio.ByteBuffer input, java.nio.ByteBuffer output)
          Finishes a multi-part transformation with, or completely transforms, a byte buffer, and stores the result into the output buffer.