不浪漫亦罪名

笼子里的金丝雀,笼子外的鸿鹄志

摘要: /*字符串 DESede(3DES) 加密*/ import java.security.Security; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; public class DES3 { private static final String Algorithm = "DESede"; // 定义 加密算法,可用 // DES,DESede,Blowfish // keybyte为加密密钥,长度为24字节 ... 阅读全文
posted @ 2014-01-14 08:48 不浪漫亦罪名 阅读(414) 评论(0) 推荐(0) 编辑