3334353637383940414243
@Test public void decodeSimple() throws SQLException { Decoder codec = this.factory.createDecoder(null); Assert.assertEquals("password", codec.decode("password")); } @Test public void decodeHex() throws SQLException {
4142434445464748495051
@Test public void decodeHex() throws SQLException { Decoder codec = this.factory.createDecoder(null); Assert.assertEquals("password", codec.decode("16:70617373776f7264")); } @Test public void decodeBase64() throws SQLException {
4950515253545556575859
@Test public void decodeBase64() throws SQLException { Decoder codec = this.factory.createDecoder(null); Assert.assertEquals("password", codec.decode("64:cGFzc3dvcmQ=")); } @Override @Test public void test() throws SQLException
5859606162636465
@Test public void test() throws SQLException { Decoder codec = this.factory.createDecoder(null); Assert.assertEquals("password", codec.decode("?:wzAkF0hlYUeGhfzRQIxYAQ==")); } }
@Test public void decodeBase64() throws SQLException { Decoder codec = this.factory.createDecoder(null); Assert.assertEquals("password", codec.decode("64:cGFzc3dvcmQ=")); } @Test public void test() throws SQLException {
5758596061626364