java的加密解密

java的加密解密

ID:37710167

大小:23.71 KB

页数:15页

时间:2019-05-29

java的加密解密_第1页
java的加密解密_第2页
java的加密解密_第3页
java的加密解密_第4页
java的加密解密_第5页
资源描述:

《java的加密解密》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、bytealgorithm加密string解密importimportjava.security.InvalidKeyException;importjava.security.NoSuchAlgorithmException;importjava.security.SecureRandom;importjava.security.spec.InvalidKeySpecException;importjavax.crypto.BadPaddingException;importjavax.crypto.Cipher;importjav

2、ax.crypto.IllegalBlockSizeException;importjavax.crypto.KeyGenerator;importjavax.crypto.NoSuchPaddingException;importjavax.crypto.SecretKey;importjavax.crypto.SecretKeyFactory;importjavax.crypto.spec.DESKeySpec;publicclassDESEncryptTest{privatestaticfinalStringDES_ALGORI

3、THM="DES";/***DES加密*@paramplainData*@paramsecretKey*@return*@throwsException*/publicStringencryption(StringplainData,StringsecretKey)throwsException{Ciphercipher=null;try{cipher=Cipher.getInstance(DES_ALGORITHM);cipher.init(Cipher.ENCRYPT_MODE,generateKey(secretKey));}c

4、atch(NoSuchAlgorithmExceptione){e.printStackTrace();}catch(NoSuchPaddingExceptione){e.printStackTrace();}catch(InvalidKeyExceptione){}try{//为了防止解密时报javax.crypto.IllegalBlockSizeException:Inputlengthmustbemultipleof8whendecryptingwithpaddedcipher异常,//不能把加密后的字节数组直接转换成字符串b

5、yte[]buf=cipher.doFinal(plainData.getBytes());returnBase64Utils.encode(buf);}catch(IllegalBlockSizeExceptione){e.printStackTrace();thrownewException("IllegalBlockSizeException",e);}catch(BadPaddingExceptione){e.printStackTrace();thrownewException("BadPaddingException",e

6、);}}/***DES解密*@paramsecretData*@paramsecretKey*@return*@throwsException*/publicStringdecryption(StringsecretData,StringsecretKey)throwsException{Ciphercipher=null;try{cipher=Cipher.getInstance(DES_ALGORITHM);cipher.init(Cipher.DECRYPT_MODE,generateKey(secretKey));}catch

7、(NoSuchAlgorithmExceptione){e.printStackTrace();thrownewException("NoSuchAlgorithmException",e);}catch(NoSuchPaddingExceptione){e.printStackTrace();thrownewException("NoSuchPaddingException",e);}catch(InvalidKeyExceptione){e.printStackTrace();thrownewException("InvalidK

8、eyException",e);}try{byte[]buf=cipher.doFinal(Base64Utils.decode(secretData.toCharArray()));returnnewString(bu

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。