分享

一段AES的简化java代码

 zhanghuan 2007-06-22
一段AES的简化java代码:
/**
         * 对数据用AES算法加密
         * @param plainText  要加密的字节数组
         * @param key  密钥
         * @return 加密后的字节数组
         */
        private static byte [] encrypt(byte [] plainText, byte [] key) {
            try{
            SecretKeySpec skeySpec = new SecretKeySpec(key, "AES");
            Cipher cipher = Cipher.getInstance("AES");
            cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
            byte[] decryptText = cipher.doFinal(plainText);
            return decryptText;
             } catch(Exception e) {
                 e.printStackTrace();
                 return null;
             }
        }
 
/**
         * 对AES算法加密的数据解密
         * @param cipherText  要解密的字节数组
         * @param key  密钥
         * @return 解密后的字节数组
         */
         private static byte [] decrypt(byte [] cipherText, byte [] key) {
            try{
                SecretKeySpec skeySpec = new SecretKeySpec(key, "AES");
                Cipher cipher = Cipher.getInstance("AES");
                cipher.init(Cipher.DECRYPT_MODE, skeySpec);
                byte[] plainText = cipher.doFinal(cipherText);
                return plainText;
             } catch(Exception e) {
                 e.printStackTrace();
                 return null;
             }
         }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多