国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Java > 正文

使用java自帶des加密算法實(shí)現(xiàn)文件加密和字符串加密

2019-11-26 15:37:47
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.CipherInputStream;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.spec.IvParameterSpec;
public class DesTool {
 private static final String PASSKEY = "afasdf";
 private static final String DESKEY = "asfsdfsdf";
 /**
  * @Comments :對(duì)文件進(jìn)行加密
  * @param filePath  要加密的文件路徑
  * @param fileName 文件
  * @param mode 加密模式  加密:Cipher.ENCRYPT_MODE 解密:Cipher.DECRYPT_MODE
  * @return
  */
 public static String encoderOrdecoder(String filePath, String fileName, int mode) {

  InputStream is = null;
  OutputStream out = null;
  CipherInputStream cis = null;

  try {
   SecureRandom sr = new SecureRandom();
   DESKeySpec dks = new DESKeySpec(DESKEY.getBytes());
   SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
   SecretKey securekey = keyFactory.generateSecret(dks);
   IvParameterSpec iv = new IvParameterSpec(PASSKEY.getBytes());
   Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
   cipher.init(mode, securekey, iv, sr);

   File encoderFile = new File(filePath + File.separator + "encoder");
   if (!encoderFile.exists()) {
    encoderFile.mkdir();
   }

   is = new FileInputStream(filePath + File.separator + fileName);
   out = new FileOutputStream(filePath + File.separator + "encoder"
     + File.separator + fileName);

   cis = new CipherInputStream(is, cipher);
   byte[] buffer = new byte[1024];
   int r;
   while ((r = cis.read(buffer)) > 0) {
    out.write(buffer, 0, r);
   }

  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   try {
    if (is != null) {
     is.close();
    }
    if (cis != null) {
     cis.close();
    }
    if (out != null) {
     out.close();
    }
   } catch (Exception e1){

   }
  }
  return filePath + File.separator + "encoder" + File.separator
    + fileName;
 }

/**@Comments :對(duì)字符串進(jìn)行加密
 * @param src 源字符串
 * @param mode 加密模式  加密:Cipher.ENCRYPT_MODE 解密:Cipher.DECRYPT_MODE
 * @return
 */
public static String encoderOrdecoder( String src, int mode) {
  String tag="";
  InputStream is = null;
  OutputStream out = null;
  CipherInputStream cis = null;

  try {
   SecureRandom sr = new SecureRandom();
   DESKeySpec dks = new DESKeySpec(DESKEY.getBytes());
   SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
   SecretKey securekey = keyFactory.generateSecret(dks);
   IvParameterSpec iv = new IvParameterSpec(PASSKEY.getBytes());
   Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
   cipher.init(mode, securekey, iv, sr);
   cis = new CipherInputStream(new ByteArrayInputStream(src.getBytes()) , cipher);
   out=new ByteArrayOutputStream();
   byte[] buffer = new byte[1024];
   int r;
   while ((r = cis.read(buffer)) > 0) {
    out.write(buffer, 0, r);
   }
   tag=out.toString();
  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   try {
    if (is != null) {
     is.close();
    }
    if (cis != null) {
     cis.close();
    }
    if (out != null) {
     out.close();
    }
   } catch (Exception e1){

   }
  }
  return tag;
 }
 public static void main(String[] args) {
  System.out.println("aaa"); 
  String t=encoderOrdecoder("aaa", Cipher.ENCRYPT_MODE );
  System.out.println(t); 
  System.out.println(encoderOrdecoder(t, Cipher.DECRYPT_MODE ));
 }
}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 马山县| 斗六市| 滕州市| 清新县| 安仁县| 青川县| 台南县| 盐池县| 香格里拉县| 平泉县| 杨浦区| 教育| 卢氏县| 曲松县| 连云港市| 定安县| 咸宁市| 曲靖市| 淳化县| 仙桃市| 大竹县| 南开区| 澄江县| 黑龙江省| 隆林| 黄冈市| 安阳市| 屯留县| 朝阳市| 图们市| 梅州市| 石狮市| 江永县| 抚宁县| 石河子市| 文昌市| 宕昌县| 龙游县| 永州市| 宜丰县| 贵州省|