| java.lang.Object org.h2.security.XTEA
XTEA | public class XTEA implements BlockCipher(Code) | | An implementation of the XTEA block cipher algorithm.
This implementation uses 32 rounds.
|
Method Summary | |
public void | decrypt(byte[] bytes, int off, int len) | public void | decryptBlock(byte[] in, byte[] out, int off) | public void | encrypt(byte[] bytes, int off, int len) | public void | encryptBlock(byte[] in, byte[] out, int off) | public int | getKeyLength() | public void | setKey(byte[] b) |
decrypt | public void decrypt(byte[] bytes, int off, int len)(Code) | | |
decryptBlock | public void decryptBlock(byte[] in, byte[] out, int off)(Code) | | |
encrypt | public void encrypt(byte[] bytes, int off, int len)(Code) | | |
encryptBlock | public void encryptBlock(byte[] in, byte[] out, int off)(Code) | | |
getKeyLength | public int getKeyLength()(Code) | | |
setKey | public void setKey(byte[] b)(Code) | | |
|
|