摘要: java版加密:public static String aesEncrypt(String str, String key) throws Exception { if (str == null || key == null) return null; Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding")... 阅读全文
posted @ 2016-05-10 11:09 zwwhp 阅读(311) 评论(0) 推荐(0) 编辑