public class TestSimpleEncryptor extends BaseTestCase {
@Test
public void test() {
SimpleAesEncryptor e = new SimpleAesEncryptor();
EncryptKey key = new BasicEncryptKey("hello");
byte[] data = "test123".getBytes();
byte[] ecData = e.encrypt(data, key);
System.out.println(Arrays.toString(ecData));
byte[] deData = e.decrypt(ecData, key);
String s = new String(deData);
System.out.println(s);
Timestamp t = new Timestamp(System.currentTimeMillis());
byte[] ecTimestamp = e.encryptString(t.toString(), key);
System.out.println(t + " encrypted -> " + Arrays.toString(ecTimestamp));
String tsFormat = e.decryptString(ecTimestamp, key);
Timestamp t1 = Timestamp.valueOf(tsFormat);
Assert.assertEquals(t, t1);
}