当前位置: 首页 > article >正文

文件的摘要算法(md5、sm3、sha256、crc)

        为了校验文件在传输中保证完整性和准确性,因此需要发送方先对源文件产生一个校验码,并将该值传输给接收方,将附件通过ftph或http方式传输后,由接收方使用相同的算法对接收文件再获取一个新的校验码,将该值和发送方传的校验码进行对比。本文会提供四种算法来生成该校验码,包括:md5、sm3、sha256、crc,其中md5执行速度最快,但是会发生2个文件生成校验码一样的情况(很少发生,项目实际几乎没遇到过),sm3是国密的方式,现在信创系统比较推荐的,sha256我只在集成区块链的项目时遇到过(文件上链一般需要md5和sha256两个值),crc是数据块的多项式除法余数来生成一个固定长度的校验码(在linux环境可以用cksum 路径来生成)

package com;

import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.io.IOUtils;
import org.bouncycastle.crypto.digests.SM3Digest;
import org.bouncycastle.pqc.math.linearalgebra.ByteUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.util.zip.CRC32;

/**
 * commons-codec-1.10.jar
 * commons-io-2.8.0.jar
 * bcprov-jdk15on-1.59.jar
 * 
 */
public class Test {
    static Logger logger = LoggerFactory.getLogger(Test.class);

    /****
     * md5摘要
     * @param filePath
     * @return
     */
    public static String file2Md5(String filePath) {
        FileInputStream fis = null;
        try {
            File file = new File(filePath);
            fis = new FileInputStream(file);
            return DigestUtils.md5Hex(fis);
        }catch (Exception e){
            logger.error("获取文件md5异常:"+filePath,e);
            return "";
        }finally {
            IOUtils.closeQuietly(fis);
        }
    }

    /****
     * sm3摘要
     * bcpov-jdk15on-1.59.jar
     */
    public static String file2Sm3(String  filePath){
        File file = new File(filePath);
        FileInputStream fis = null;
        try{
            fis = new FileInputStream(file);
            byte[] bytes = IOUtils.toByteArray(fis);
            SM3Digest sm3Digest = new SM3Digest();
            sm3Digest.update(bytes,0,bytes.length);
            byte bt[] = new byte[sm3Digest.getDigestSize()];
            sm3Digest.doFinal(bt, 0);
            return ByteUtils.toHexString(bt);
        }catch(Exception e){
            logger.error("获取文件sm3异常:"+filePath,e);
            return "";
        }finally {
            IOUtils.closeQuietly(fis);
        }
    }

    /***
     * sha256摘要
     * @param filePath
     * @return
     */
    public static String file2Sha256(String filePath){
        File file = new File(filePath);
        FileInputStream fis = null;
        try{
            fis = new FileInputStream(file);
            return DigestUtils.sha256Hex(fis);
        }catch (Exception e){
            logger.error("获取文件sha256异常:"+filePath,e);
            return "";
        }finally{
            IOUtils.closeQuietly(fis);
        }
    }

    /****
     * 循环冗余校验
     * @param filePath
     * @return
     */
    public static String file2Crc32(String filePath) {
        FileInputStream fis = null;
        BufferedInputStream bis = null;
        try {
            fis = new FileInputStream(filePath);
            bis = new BufferedInputStream(fis);
            CRC32 crc32 = new CRC32();
            byte[] buffer = new byte[1024];
            int bytesRead;
            while ((bytesRead = bis.read(buffer)) != -1) {
                crc32.update(buffer, 0, bytesRead);
            }
            return String.valueOf(crc32.getValue());
        } catch (Exception e) {
            logger.error("获取文件crc异常:"+filePath,e);
            return "";
        }finally {
            IOUtils.closeQuietly(bis);
            IOUtils.closeQuietly(fis);
        }
    }
}


http://www.kler.cn/a/406768.html

相关文章:

  • [论文阅读] 异常检测 Deep Learning for Anomaly Detection: A Review(三)总结梳理-疑点记录
  • IDEA 2024.3 版本更新主要功能介绍
  • 【ubuntu24.04.1最简洁安装方案】
  • Bokeh实现大规模数据可视化的最佳实践
  • CSS布局学习1
  • 如何使用Jest测试你的React组件
  • 【LeetCode热题100】队列+宽搜
  • 企业OA管理系统:Spring Boot技术实践与案例分析
  • 了解大模型:开启智能科技的新篇章
  • ubuntu增加swap交换空间
  • SpringMVC应用专栏介绍
  • 全面解析 JMeter 前置处理器:概念、工作原理与应用场景
  • 归并排序:数据排序的高效之道
  • 【大数据学习 | Spark-Core】RDD的概念与Spark任务的执行流程
  • 自动驾驶概念
  • Java将PDF保存为图片
  • 【H2O2|全栈】JS进阶知识(八)ES6(4)
  • socket连接封装
  • 昆明理工大学《2023年+2021年816自动控制原理真题》 (完整版)
  • Kubernetes:容器编排的强力
  • SpringBoot中使用Sharding-JDBC实战(实战+版本兼容+Bug解决)
  • 个人笔记本安装CUDA并配合Pytorch使用NVIDIA GPU训练神经网络的计算以及CPUvsGPU计算时间的测试代码
  • Android adb shell dumpsys audio 信息查看分析详解
  • 企业OA管理系统:Spring Boot技术深度探索
  • PTC在电池中的作用
  • 万有引力定律和库仑定律:自然的对称诗篇