# springboot-rsa **Repository Path**: pinoto/springboot-rsa ## Basic Information - **Project Name**: springboot-rsa - **Description**: 使用rsa进行加解密 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-13 - **Last Updated**: 2023-10-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # RSA 加密解密 通过rsa对密码进行加密。 有两种rsa加密方式: 1. 以常规字符串形式传递密匙(RSAStrUtil.java) 2. 以文件形式形式保存在本地(RSAHelper.java) (RSAKeyUtils.java尚存在一些问题,无法下载到 import com.adph.jms.Base64Utils包) 测试类为:**RSATest** 测试网站: https://www.lddgo.net/encrypt/rsa 本程序生成的公钥秘钥可以通过该网站进行验证。 ## 参考文章: https://blog.csdn.net/qq_20957669/article/details/89083134 在ohter中包含了其他几种rsa加密方式