• java实现简单的文件加密解密


    import javax.crypto.Cipher;
    import javax.crypto.CipherInputStream;
    import javax.crypto.CipherOutputStream;
    import javax.crypto.KeyGenerator;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.security.Key;
    import java.security.SecureRandom;
    
    
    public class FileDESUtil {
        Key key;
    
        public FileDESUtil(String str) {
            getKey(str);//生成密匙
        }
    
        /**
         * 根据参数生成KEY
         */
        public void getKey(String strKey) {
            try {
                KeyGenerator _generator = KeyGenerator.getInstance("DES");
                _generator.init(new SecureRandom(strKey.getBytes()));
                this.key = _generator.generateKey();
            } catch (Exception e) {
                throw new RuntimeException("Error initializing SqlMap class. Cause: " + e);
            }
        }
    
        /**
         * 文件流加密
         * @param file
         * @return
         * @throws Exception
         */
        public InputStream encrypt(InputStream file) throws Exception {
            Cipher cipher = Cipher.getInstance("DES");
            cipher.init(Cipher.ENCRYPT_MODE, this.key);
            CipherInputStream cis = new CipherInputStream(file, cipher);
            return cis;
        }
    
        /**
         * 文件流解密
         * @param file
         * @return
         * @throws Exception
         */
        public InputStream decrypt(InputStream file) throws Exception {
            Cipher cipher = Cipher.getInstance("DES");
            cipher.init(Cipher.DECRYPT_MODE, this.key);
            CipherInputStream cis = new CipherInputStream(file, cipher);
            return cis;
        }
    
        /**
         * 文件加密
         * @param file
         * @param destFile
         * @throws Exception
         */
        public void encrypt(String file, String destFile) throws Exception {
            Cipher cipher = Cipher.getInstance("DES");
            cipher.init(Cipher.ENCRYPT_MODE, this.key);
            InputStream is = new FileInputStream(file);
            OutputStream out = new FileOutputStream(destFile);
            CipherInputStream cis = new CipherInputStream(is, cipher);
            byte[] buffer = new byte[1024];
            int r;
            while ((r = cis.read(buffer)) > 0) {
                out.write(buffer, 0, r);
            }
            cis.close();
            is.close();
            out.close();
        }
    
        /**
         * 文件解密
         * @param file
         * @param dest
         * @throws Exception
         */
        public void decrypt(String file, String dest) throws Exception {
            Cipher cipher = Cipher.getInstance("DES");
            cipher.init(Cipher.DECRYPT_MODE, this.key);
            InputStream is = new FileInputStream(file);
            OutputStream out = new FileOutputStream(dest);
            CipherOutputStream cos = new CipherOutputStream(out, cipher);
            byte[] buffer = new byte[1024];
            int r;
            while ((r = is.read(buffer)) >= 0) {
                System.out.println();
                cos.write(buffer, 0, r);
            }
            cos.close();
            out.close();
            is.close();
        }
        public static void main(String[] args) throws Exception {
            FileDESUtil fileDESUtil = new FileDESUtil("ffnR0djmHx556t1F");//密钥
            fileDESUtil.encrypt("d:/file.txt", "d:/fileDES.txt"); //加密
            fileDESUtil.decrypt("d:/fileDES.txt", "d:/file.txt"); //解密
    
        }
    }
  • 相关阅读:
    关于需求转化的事情
    自由邮件的配置
    广告数据关联CS后台数据
    向新同事学习,如何配置邮件
    渠道映射等关系
    机器学习基本概念
    家政业务系统常识
    SAP APO
    SAP Web Dynpro
    SAP Web Dynpro-监视应用程序
  • 原文地址:https://www.cnblogs.com/i-tao/p/14518934.html
Copyright © 2020-2023  润新知