Searched refs:DataLengthException (Results 1 - 25 of 34) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DDataLengthException.java9 public class DataLengthException class in inherits:RuntimeCryptoException
15 public DataLengthException() method in class:DataLengthException
20 * create a DataLengthException with the given message.
24 public DataLengthException( method in class:DataLengthException
H A DOutputLengthException.java4 extends DataLengthException
H A DDerivationFunction.java11 throws DataLengthException, IllegalArgumentException;
H A DMac.java47 * @exception DataLengthException if there isn't enough data in in.
50 throws DataLengthException, IllegalStateException;
60 * @exception DataLengthException if there isn't enough space in out.
64 throws DataLengthException, IllegalStateException;
H A DBlockCipher.java43 * @exception DataLengthException if there isn't enough data in in, or
49 throws DataLengthException, IllegalStateException;
H A DSigner.java31 throws CryptoException, DataLengthException;
H A DStreamCipher.java43 * @exception DataLengthException if the output buffer is too small.
46 throws DataLengthException;
H A DStreamBlockCipher.java79 * @exception DataLengthException if the output buffer is too small.
87 throws DataLengthException
91 throw new DataLengthException("output buffer too small in processBytes()");
H A DBufferedBlockCipher.java150 * @exception DataLengthException if there isn't enough space in out.
157 throws DataLengthException, IllegalStateException
181 * @exception DataLengthException if there isn't enough space in out.
190 throws DataLengthException, IllegalStateException
249 * @exception DataLengthException if there is insufficient space in out for
254 * @exception DataLengthException if the input is not block size
260 throws DataLengthException, IllegalStateException, InvalidCipherTextException
275 throw new DataLengthException("data not block size aligned");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DAEADBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
63 * @exception DataLengthException if the output buffer is too small.
66 throws DataLengthException;
77 * @exception DataLengthException if the output buffer is too small.
80 throws DataLengthException;
H A DCBCBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
136 * @exception DataLengthException if there isn't enough data in in, or
146 throws DataLengthException, IllegalStateException
170 * @exception DataLengthException if there isn't enough data in in, or
180 throws DataLengthException, IllegalStateException
184 throw new DataLengthException("input buffer too short");
213 * @exception DataLengthException if there isn't enough data in in, or
223 throws DataLengthException, IllegalStateException
227 throw new DataLengthException("input buffer too short");
H A DCFBBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
138 * @exception DataLengthException if there isn't enough data in in, or
148 throws DataLengthException, IllegalStateException
160 * @exception DataLengthException if there isn't enough data in in, or
170 throws DataLengthException, IllegalStateException
174 throw new DataLengthException("input buffer too short");
179 throw new DataLengthException("output buffer too short");
208 * @exception DataLengthException if there isn't enough data in in, or
218 throws DataLengthException, IllegalStateException
222 throw new DataLengthException("inpu
[all...]
H A DCTSBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
82 * @exception DataLengthException if there isn't enough space in out.
89 throws DataLengthException, IllegalStateException
115 * @exception DataLengthException if there isn't enough space in out.
124 throws DataLengthException, IllegalStateException
138 throw new DataLengthException("output buffer too short");
181 * @exception DataLengthException if there is insufficient space in out for
191 throws DataLengthException, IllegalStateException, InvalidCipherTextException
195 throw new DataLengthException("output buffer to small in doFinal");
206 throw new DataLengthException("nee
[all...]
H A DOFBBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
135 * @exception DataLengthException if there isn't enough data in in, or
145 throws DataLengthException, IllegalStateException
149 throw new DataLengthException("input buffer too short");
154 throw new DataLengthException("output buffer too short");
H A DSICBlockCipher.java5 import org.bouncycastle.crypto.DataLengthException;
86 throws DataLengthException, IllegalStateException
H A DCCMBlockCipher.java7 import org.bouncycastle.crypto.DataLengthException;
123 throws DataLengthException, IllegalStateException
131 throws DataLengthException, IllegalStateException
231 * @throws DataLengthException if output buffer too short.
234 throws IllegalStateException, InvalidCipherTextException, DataLengthException
270 throw new DataLengthException("Output buffer too short.");
303 throw new DataLengthException("Output buffer too short.");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java6 import org.bouncycastle.crypto.DataLengthException;
141 * @exception DataLengthException if there isn't enough space in out.
148 throws DataLengthException, IllegalStateException
172 * @exception DataLengthException if there isn't enough space in out.
181 throws DataLengthException, IllegalStateException
236 * @exception DataLengthException if there is insufficient space in out for
245 throws DataLengthException, IllegalStateException, InvalidCipherTextException
282 throw new DataLengthException("last block incomplete in decryption");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRSACoreEngine.java4 import org.bouncycastle.crypto.DataLengthException;
92 throw new DataLengthException("input too large for RSA cipher.");
96 throw new DataLengthException("input too large for RSA cipher.");
115 throw new DataLengthException("input too large for RSA cipher.");
H A DDESedeEngine.java4 import org.bouncycastle.crypto.DataLengthException;
98 throw new DataLengthException("input buffer too short");
H A DRC4Engine.java4 import org.bouncycastle.crypto.DataLengthException;
80 throw new DataLengthException("input buffer too short");
H A DRFC3394WrapEngine.java5 import org.bouncycastle.crypto.DataLengthException;
81 throw new DataLengthException("wrap data must be a multiple of 8 bytes");
H A DRSABlindedEngine.java8 import org.bouncycastle.crypto.DataLengthException;
83 * @exception DataLengthException the input block is too large.
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseBlockCipher.java31 import org.bouncycastle.crypto.DataLengthException;
824 catch (DataLengthException e)
848 catch (DataLengthException e)
892 catch (DataLengthException e)
932 throws DataLengthException;
935 throws DataLengthException;
997 public int processByte(byte in, byte[] out, int outOff) throws DataLengthException
1002 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException
1059 public int processByte(byte in, byte[] out, int outOff) throws DataLengthException
1064 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException
[all...]
H A DBaseStreamCipher.java24 import org.bouncycastle.crypto.DataLengthException;
333 catch (DataLengthException e)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DRSADigestSigner.java18 import org.bouncycastle.crypto.DataLengthException;
147 throws CryptoException, DataLengthException

Completed in 4984 milliseconds

12