当前位置:   article > 正文

Spring Boot(八十二):SpringBoot通过rsa实现API加密

Spring Boot(八十二):SpringBoot通过rsa实现API加密

项目中使用RSA加密方式对API接口返回的数据加密,让API数据更加安全。别人无法对提供的数据进行破解。Spring Boot接口加密,可以对返回值、参数值通过注解的方式自动加解密 。

下面开始代码演示

1 接口加密

1.1 新建一个springboot项目

1.2 添加依赖

  1. <dependency>
  2. <groupId>cn.shuibo</groupId>
  3. <artifactId>rsa-encrypt-body-spring-boot</artifactId>
  4. <version>1.0.1.RELEASE</version>
  5. </dependency>

完整依赖如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion&g
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/884509
推荐阅读
相关标签
  

闽ICP备14008679号