|
Cryptix V3.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IllegalBlockSizeException | |
xjava.security |
Uses of IllegalBlockSizeException in xjava.security |
Methods in xjava.security that throw IllegalBlockSizeException | |
byte[] |
Cipher.crypt(byte[] in)
Encrypts or decrypts the specified array of data, which will be automatically padded/unpadded as necessary. |
byte[] |
Cipher.crypt(byte[] in,
int offset,
int length)
Encrypts or decrypts the specified array of data, which will be automatically padded/unpadded as necessary. |
int |
Cipher.crypt(byte[] in,
int inOffset,
int inLen,
byte[] out,
int outOffset)
Encrypts or decrypts the specified subarray of data, pads or unpads it as necessary, and places the result in the specified output buffer. |
byte[] |
Cipher.doFinal(byte[] in)
Equivalent to crypt(in) . |
byte[] |
Cipher.doFinal(byte[] in,
int offset,
int length)
Equivalent to crypt(in, offset, length) . |
int |
Cipher.doFinal(byte[] in,
int inOffset,
int inLen,
byte[] out)
Equivalent to crypt(in, inOffset, inLen, out, 0) . |
int |
Cipher.doFinal(byte[] in,
int inOffset,
int inLen,
byte[] out,
int outOffset)
Equivalent to crypt(in, inOffset, inLen, out, outOffset) . |
|
Cryptix V3.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |