package test; import com.seaboat.bytecode.ByteCodeEncryptor; /** * * @author seaboat * @date 2017-07-06 * @version 1.0 *
email: 849586227@qq.com*
blog: http://blog.csdn.net/wangyangzhizhou*
ByteCodeEncryptor tester.
*/ public class ByteCodeEncryptorTest { public static void main(String[] args) { byte[] texts = "qwertyuio".getBytes(); for (byte b : texts) System.out.println(b); System.out.println("==========="); byte[] bytes = ByteCodeEncryptor.encrypt(texts); for (byte b : bytes) System.out.println(b); } }