DES文件加密解密(增强版)

1.引入hutool-all的maven依赖

<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.28</version>
</dependency>

2.编写代码

package com.study.utils;import cn.hutool.core.io.FileUtil;
import cn.hutool.core.util.HexUtil;
import cn.hutool.core.util.NumberUtil;import javax.crypto.Cipher;
import javax.crypto.CipherOutputStream;
import javax.crypto.KeyGenerator;
import java.io.*;
import java.security.Key;
import java.security.SecureRandom;
import java.util.List;/*** @Auther lmy* @date 2024-06-14 2:05* @Description AES文件加密解密(增强版)*/
public class FileAES {/*** 根据参数生成KEY*/public static Key getKey(String strKey) {Key key;try {KeyGenerator generator = KeyGenerator.getInstance("AES");generator.init(new SecureRandom(strKey.getBytes()));key = generator.generateKey();generator = null;} catch (Exception e) {throw new RuntimeException("Error initializing SqlMap class. Cause: " + e);}return key;}/*** 文件采用AES算法解密文件*/public static void decrypt(String sourceDir, String targetDir, Key key) throws Exception {System.out.println("开始解密......");System.out.println("资源目录:" + sourceDir);System.out.println("输出目录:" + targetDir);long startL = System.currentTimeMillis();Cipher cipher = Cipher.getInstance("AES");cipher.init(Cipher.DECRYPT_MODE, key);List<String> fileNames = FileUtil.listFileNames(sourceDir);System.out.println("资源文件总数量:" + fileNames.size());System.out.println("-----------------start-----------------");int i = 1;for (String sourceFileName : fileNames) {long start = System.currentTimeMillis();System.out.println("当前进度:" + i++ + "/" + fileNames.size());String sourceStr = sourceDir + "/" + sourceFileName;long size = FileUtil.size(new File(sourceStr));System.out.println("源文件-名称:" + sourceFileName + ",size:" + size / (1024 * 1024) + "(MB)" + ", " + NumberUtil.div(size, (1024 * 1024 * 1024)) + "(GB)");String prefix = FileUtil.getPrefix(sourceFileName);String suffix = FileUtil.getSuffix(sourceFileName);byte[] bytes = HexUtil.decodeHex(prefix);byte[] result = cipher.doFinal(bytes);String decryptName = new String(result);String encFileStr = targetDir + "/" + decryptName + "." + suffix;InputStream is = new FileInputStream(sourceStr);OutputStream out = new FileOutputStream(encFileStr);CipherOutputStream cos = new CipherOutputStream(out, cipher);byte[] buffer = new byte[1024 * 1024];int r;while ((r = is.read(buffer)) >= 0) {cos.write(buffer, 0, r);}cos.close();out.close();is.close();long end = System.currentTimeMillis();System.out.println("输出文件-名称:" + decryptName + "." + suffix);System.out.println("小计耗时:" + (end - start) / 1000 + "s");System.out.println();}System.out.println("------------------end----------------");System.out.println("解密完成,总计耗时:" + (System.currentTimeMillis() - startL) / 1000 + "s");}public static void encrypt(String sourceDir, String targetDir, Key key) throws Exception {System.out.println("开始加密......");System.out.println("资源目录:" + sourceDir);System.out.println("输出目录:" + targetDir);long startL = System.currentTimeMillis();Cipher cipher = Cipher.getInstance("AES");cipher.init(Cipher.ENCRYPT_MODE, key);List<String> fileNames = FileUtil.listFileNames(sourceDir);System.out.println("资源文件总数量:" + fileNames.size());System.out.println("-----------------start-----------------");int i = 1;for (String sourceFileName : fileNames) {long start = System.currentTimeMillis();System.out.println("当前进度:" + i++ + "/" + fileNames.size());String sourceStr = sourceDir + "/" + sourceFileName;long size = FileUtil.size(new File(sourceStr));System.out.println("源文件-名称:" + sourceFileName + ",size:" + size / (1024 * 1024) + "(MB)" + ", " + NumberUtil.div(size, (1024 * 1024 * 1024)) + "(GB)");String prefix = FileUtil.getPrefix(sourceFileName);String suffix = FileUtil.getSuffix(sourceFileName);byte[] result = cipher.doFinal(prefix.getBytes());String encryptHexName = HexUtil.encodeHexStr(result);String encFileStr = targetDir + "/" + encryptHexName + "." + suffix;InputStream is = new FileInputStream(sourceStr);OutputStream out = new FileOutputStream(encFileStr);CipherOutputStream cos = new CipherOutputStream(out, cipher);byte[] buffer = new byte[1024 * 1024];int r;while ((r = is.read(buffer)) >= 0) {cos.write(buffer, 0, r);}cos.close();out.close();is.close();long end = System.currentTimeMillis();System.out.println("输出文件-名称:" + encryptHexName + "." + suffix);System.out.println("小计耗时:" + (end - start) / 1000 + "s");System.out.println();}System.out.println("------------------end----------------");System.out.println("加密完成,总计耗时:" + (System.currentTimeMillis() - startL) / 1000 + "s");}public static void main(String[] args) throws Exception {Key key = getKey("密钥123456");String sourceDir = "C:\\Users\\xzq\\Desktop\\befor";String targetDir = "C:\\Users\\xzq\\Desktop\\after";String decDir = "C:\\Users\\xzq\\Desktop";//加密
//        encrypt("C:\\Users\\xzq\\Desktop\\befor", "C:\\Users\\xzq\\Desktop\\after", key);//解密decrypt("C:\\Users\\xzq\\Desktop\\after", "C:\\Users\\xzq\\Desktop", key);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/26911.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++设计模式——Proxy代理模式

一&#xff0c;代理模式简介 代理模式是一种 结构型设计模式&#xff0c;该模式通过引入一个新的代理对象Proxy&#xff0c;来间接访问原始对象&#xff0c;从而使访问方式变得灵活和可控。 代理对象的设定减少了客户端与真实对象之间的直接交互。 通过引入代理对象来间接访问原…

农资投入品系统架构:数字化农业的技术支撑与创新

在当今数字化时代&#xff0c;农业领域也在迅速迈向数字化和智能化的新阶段。农资投入品系统作为农业生产的重要支撑&#xff0c;其系统架构的设计与创新对于提高农业生产效率、保障粮食安全具有重要意义。本文将探讨农资投入品系统架构的设计原则、核心模块以及未来发展趋势。…

OrangePi AIpro测评:性能、应用与开发者体验解析

一、OrangePi AIpro介绍 OrangePi AIpro(8T)采用昇腾AI技术路线&#xff0c;具体为4核64位处理器AI处理器&#xff0c;集成图形处理器&#xff0c;支持8TOPS AI算力&#xff0c;拥有8GB/16GB LPDDR4X&#xff0c;可以外接32GB/64GB/128GB/256GB eMMC模块&#xff0c;支持双4K高…

AI虚拟试穿技术:开启高保真、多场景、多样化服装组合的试穿应用

随着电子商务的快速发展,消费者对于在线购物体验的要求越来越高。特别是在服装领域,消费者渴望能够在购买前直观地了解服装的试穿效果。传统的虚拟试穿技术虽然已有一定的发展,但在不同场景下的高保真度和鲁棒性方面仍面临挑战。为此,我们研发了一种全新的AI虚拟试穿技术,…

StarkNet架构之L1-L2消息传递机制

文章目录 StarkNet架构之L1-L2消息传递机制L2 → L1消息L2 → L1消息结构L2 → L1消息哈希L1 → L2消息L1 → L2消息取消L1 → L2报文费用L1 → L2哈希额外资源StarkNet架构之L1-L2消息传递机制 原文地址:https://docs.starknet.io/architecture-and-concepts/network-archit…

2.spring cloud gateway 源码编译

spring cloud gateway编译 1.编译 命令 mvn clean compile -U2.报错 报错信息 核心信息 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.1.2:check (checkstyle-validation) on project spring-cloud-gateway-mvc: Failed during …

【分布式技术专题】「OceanBase深度解析」 探索OceanBase产品矩阵与核心设计

探索OceanBase产品矩阵与核心设计 OceanBase的六大特性高扩展高可用多租户&#xff08;资源隔离&#xff09;OceanBase架构和功能OceanBase广泛的数据源支持 OceanBase的六大特性 OceanBase以其卓越的产品平台整合方案&#xff0c;充分展现了六大核心特性的卓越与全面。这一方…

深入解析 Google Cloud Platform (GCP) 负载均衡:全面指南

目录 概述 GCP 负载均衡的类型 HTTP(S) 负载均衡 TCP/SSL 代理负载均衡 内部 HTTP(S) 负载均衡 内部 TCP/UDP 负载均衡 网络 TCP/UDP 负载均衡 配置 GCP 负载均衡 步骤 1:创建后端服务 步骤 2:配置 URL 地图和目标 HTTP 代理 步骤 3:配置全局转发规则 步骤 4:验…

C++ | Leetcode C++题解之第150题逆波兰表达式求值

题目&#xff1a; 题解&#xff1a; class Solution { public:int evalRPN(vector<string>& tokens) {int n tokens.size();vector<int> stk((n 1) / 2);int index -1;for (int i 0; i < n; i) {string& token tokens[i];if (token.length() >…

人工智能将成为数学家的“副驾驶”

人工智能将成为数学家的“副驾驶” 数学传统上是一门独立的科学。1986年&#xff0c;安德鲁怀尔斯为了证明费马定理&#xff0c;退到书房里呆了7年。由此产生的证明往往很难让同事们理解&#xff0c;有些至今仍有争议。但近年来&#xff0c;越来越多的数学领域被严格地分解为各…

winhttp劫持dll

转发类 #include "pch.h" #include "WinHttpForward.h"void WinHttpForward::InitWinHttpForward() {HMODULE hValve LoadLibrary(L"winhttp.dll");//导入系统路径下的if (GetLastError() ! ERROR_MOD_NOT_FOUND && hValve ! NULL) {G…

如何手动实现multiSetIfAbsent、multiExpire

👽System.out.println(“👋🏼嗨,大家好,我是代码不会敲的小符,目前工作于上海某电商服务公司…”); 📚System.out.println(“🎈如果文章中有错误的地方,恳请大家指正!共同进步,共同成长✊”); 🌟System.out.println(“💡如果文章对您有所帮助,希望您可以三…

Django-filter

准备工作 首先&#xff0c;确保你已经安装了django-filter包。如果没有&#xff0c;请使用以下命令安装&#xff1a; pip install django-filter然后&#xff0c;在你的settings.py文件中添加django_filters到INSTALLED_APPS列表中&#xff1a; INSTALLED_APPS [# ...djang…

深入解析JVM之类的生命周期

在线工具站 推荐一个程序员在线工具站&#xff1a;程序员常用工具&#xff08;http://cxytools.com&#xff09;&#xff0c;有时间戳、JSON格式化、文本对比、HASH生成、UUID生成等常用工具&#xff0c;效率加倍嘎嘎好用。 程序员资料站 推荐一个程序员编程资料站&#xff1a;…

Linux 性能优化实战

Linux 性能优化实战原文链接&#xff1a;https://time.geekbang.org/column/intro/100020901?tabcatalog 33 | 关于 Linux 网络&#xff0c;你必须知道这些&#xff08;上&#xff09;设计高并发架构有哪些策略&#xff1f;如何理解云计算&#xff1f;如何理解TCP/IP 四层模型…

洛谷P3269 [JLOI2016] 字符串覆盖

题目描述 字符串A有N个子串B1,B2,...,Bn。如果将这n个子串分别放在恰好一个它在A中出现的位置上&#xff08;子串之间可以重叠&#xff09;这样A中的若干字符就被这N个子串覆盖了。问A中能被覆盖字符个数的最小值和最大值。 输入格式 第一行包含一个正整数T&#xff0c;表示…

Selenium入门之环境搭建

搭建 Selenium 环境主要包括以下几个步骤&#xff1a; 安装 Python 和相关包安装 WebDriver编写和运行 Selenium 脚本 1. 安装 Python 和相关包 首先确保你已经安装了 Python。如果没有安装&#xff0c;可以从 Python 官方网站下载并安装。 然后&#xff0c;使用 pip 安装 …

2024年大数据、区块链与物联网国际会议(ICBDBLT 2024)

2024 International Conference on Big Data, Blockchain, and Internet of Things 【1】大会信息 会议简称&#xff1a;ICBDBLT 2024 大会地点&#xff1a;中国青岛 审稿通知&#xff1a;投稿后2-3日内通知 会议官网&#xff1a;www.icbdblt.com 【2】会议简介 即将召开的…

DDoS攻击:企业与个人都应了解的基本知识

DDoS攻击&#xff0c;全称分布式拒绝服务攻击&#xff08;Distributed Denial of Service attack&#xff09;&#xff0c;是一种常见的网络安全攻击方式。以下是对DDoS攻击的详细解释: DDoS攻击是指攻击者利用大量被控制的计算机或设备&#xff08;通常称为“僵尸网络”或“傀…

签到的二维码怎么制作?快速实现制作二维码签到的方法

现在很多活动会采用二维码的方式来做登记、报名、签到等&#xff0c;通过二维码可以快速获取用户信息&#xff0c;并且对于用户填写内容也提升了便利性&#xff0c;而且还能够节约成本&#xff0c;通过后台就可以查看用户登记的数据&#xff0c;方便后期的分析和信息管理。 想…