搭建一个springboot工程测试md5加密

1、展示搭建本次测试所用的springboot工程结构

其中,TestController模拟的是服务端接收post请求,TestMD5模拟的是客户端使用单元测试发送http请求

2、展示pom.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.csii.test</groupId>
    <artifactId>md5</artifactId>
    <version>1.0-SNAPSHOT</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.2.RELEASE</version>
        <relativePath />
    </parent>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.5.2</version>
        </dependency>
    </dependencies>
</project>

3、StartSpringBoot为常规的启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class StartSpringBoot {

    public static void main(String[] args) {
        SpringApplication.run(StartSpringBoot.class, args);
    }
}

4、MD5工具类

import java.security.MessageDigest;

public class MD5Utils {

    public static String strMD5ByUTF8(String originString){
        if (originString != null) {
            try {
                MessageDigest md= MessageDigest.getInstance("MD5");
                byte[] results=md.digest(originString.getBytes("UTF-8"));
                String resultString=byteArrayToHexString(results);
                return resultString.toUpperCase();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }
    private static String byteArrayToHexString(byte[] b) {
        StringBuffer resultSb=new StringBuffer();
        for (int i = 0; i < b.length; i ++){
            resultSb.append(byteToHexString(b[i]));
        }
        return resultSb.toString();
    }
    private static String byteToHexString(byte b) {
        int n=b;
        if(n<0){
            n=256+n;
        }
        int d1=n/16;
        int d2=n%16;
        return hexDigits[d1]+hexDigits[d2];
    }
    private final static String[] hexDigits={"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};
}

5、TestMD5采用的是httpclient对象来向服务端发送post请求

import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.junit.Test;

import java.io.IOException;

public class TestMD5 {

    @Test
    public void sendMD5Data(){

        CloseableHttpClient httpClient = HttpClientBuilder.create().build();
        CloseableHttpResponse response = null;
        try {
            // 创建Post请求
            String sendUrl = "http://localhost:8080/testMD5";
            HttpPost httpPost = new HttpPost(sendUrl);

            // 处理MD5加密分别获取到明文串和密文串
            String plainText = "testMD5"; // 明文串
            String key = "key"; // 秘钥
            String keyPlainText = key + plainText; // 组装成要加密的串
            MD5Utils md5Utils = new MD5Utils();
            String cipherText   = md5Utils.strMD5ByUTF8(keyPlainText); // 密文串

            System.out.println("客户端本次上送的明文串为:" + plainText + ",本次上送的密文串为:" + cipherText);

            // 将原明文串放入请求体中
            StringEntity entity = new StringEntity(plainText, "UTF-8");
            httpPost.setEntity(entity);
            // 设置ContentType
            httpPost.setHeader("Content-Type", "text/html;charset=utf8");
            // 将密文串放入到请求头中
            httpPost.setHeader("sign", cipherText);

            // 发送post请求
            response = httpClient.execute(httpPost);
            System.out.println("获取响应状态为:" + response.getStatusLine());

        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                // 释放资源
                if (httpClient != null) {
                    httpClient.close();
                }
                if (response != null) {
                    response.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

6、TestController模拟的是服务端接收请求

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.HttpServletRequest;


@Controller
public class TestController {

    @RequestMapping(value = "testMD5", method = RequestMethod.POST)
    @ResponseBody
    public void test(HttpServletRequest request, @RequestBody String plainText){
        // 从请求头中获取签名串
        String sign = request.getHeader("sign");
        System.out.println("服务端本次获取的明文串为:" + plainText + ",本次上送的密文串为:" + sign);
        // 约定的秘钥
        String key = "key";
        // 组装成待加密的串
        String keyPlainText = key + plainText;
        // 将keyPlainText进行MD5加密
        MD5Utils md5Utils = new MD5Utils();
        String cipherText = md5Utils.strMD5ByUTF8(keyPlainText); // 密文串
        // 将再次MD5加密后获得的密文串与上送的密文串做比较,如果完全一致,则证明此次传输数据成功
        boolean result = sign.equals(cipherText);
        System.out.println("此次传输数据结果:" + result);
    }
}

7、执行顺序,先执行StartSpringBoot将项目启动起来,然后再run  TestMD5类

TestMD5的控制台打印结果,打印比较多,我只展示了本次需要的日志

客户端本次上送的明文串为:testMD5,本次上送的密文串为:B5B94ED2D2D375450196E6DC5AB9DE69
获取响应状态为:HTTP/1.1 200

服务器端展示结果:

服务端本次获取的明文串为:testMD5,本次上送的密文串为:B5B94ED2D2D375450196E6DC5AB9DE69
此次传输数据结果:true

可以发现本次两次MD5之后得到的串是一致的,证明本次传输数据成功,没有被篡改。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值