| java.lang.Object org.h2.security.AES
AES | public class AES implements BlockCipher(Code) | | An implementation of the AES block cipher algorithm,
also known as Rijndael. Only AES-128 is supported by this class.
|
Method Summary | |
public void | decrypt(byte[] bytes, int off, int len) | public void | encrypt(byte[] buff, int off, int len) | public int | getKeyLength() | public void | setKey(byte[] key) |
decrypt | public void decrypt(byte[] bytes, int off, int len)(Code) | | |
encrypt | public void encrypt(byte[] buff, int off, int len)(Code) | | |
getKeyLength | public int getKeyLength()(Code) | | |
setKey | public void setKey(byte[] key)(Code) | | |
|
|