Jasypt

news/2024/11/19 22:23:36/文章来源:https://www.cnblogs.com/kakaBluce/p/18555736

要验证 Jasypt 的配置以及加密/解密功能是否正常,你可以通过几种方式来输出配置和测试加密解密过程。这包括在应用启动时输出配置,或编写一个简单的单元测试或 main 方法来验证。

在启动时输出配置

要在 Spring Boot 启动时输出 Jasypt 密码配置(不建议在生产环境中输出敏感信息,仅用于调试),可以在应用的启动类中添加一些日志记录:

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication
public class YourApplication implements CommandLineRunner {@Value("${jasypt.encryptor.password}")private String jasyptPassword;public static void main(String[] args) {SpringApplication.run(YourApplication.class, args);}@Overridepublic void run(String... args) throws Exception {System.out.println("Jasypt Password: " + jasyptPassword);// 注意:仅用于调试!不要在生产环境中打印密码}
}

编写一个单元测试

你可以编写单元测试来验证加密和解密功能:

import org.jasypt.encryption.StringEncryptor;
import org.jasypt.util.text.AES256TextEncryptor;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;public class JasyptEncryptionTest {@Testpublic void testEncryptionDecryption() {String password = "yourSecretPassword"; // 使用你的Jasypt密码AES256TextEncryptor textEncryptor = new AES256TextEncryptor();textEncryptor.setPassword(password);String originalText = "mySecretValue";String encryptedText = textEncryptor.encrypt(originalText);String decryptedText = textEncryptor.decrypt(encryptedText);assertEquals(originalText, decryptedText, "Decryption should return the original text");}
}

编写一个 main 方法

类似于单元测试,你也可以编写一个简单的 main 方法来验证:

import org.jasypt.util.text.AES256TextEncryptor;public class JasyptDemo {public static void main(String[] args) {String password = "yourSecretPassword"; // 使用你的Jasypt密码AES256TextEncryptor textEncryptor = new AES256TextEncryptor();textEncryptor.setPassword(password);String originalText = "mySecretValue";String encryptedText = textEncryptor.encrypt(originalText);String decryptedText = textEncryptor.decrypt(encryptedText);System.out.println("Original: " + originalText);System.out.println("Encrypted: " + encryptedText);System.out.println("Decrypted: " + decryptedText);}
}

注意事项

  • 以上代码中的密码仅用于演示,请确保在实际应用中安全地管理密码。
  • 不要在生产环境中打印敏感信息。
  • 根据你的加密算法和配置,选择合适的 TextEncryptorAES256TextEncryptor 是常用的选择,但你可能使用不同的加密算法。
  • 确保所有依赖项正确配置,并且与 Spring Boot 兼容。

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

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

相关文章

网卡-国家码

交互大屏、笔记本等产品出口海外,也是网络相关设备,会发出AP热点网络,所以出口海外要符合当地法规。 大屏需要以自带网卡开出本地热点,用于投屏、设备间协同等操作。热点这块受限影响的是信道,每个国家都有雷达信道以及其它军事等受限信道,使用信道时避开这些雷达信道。…

人工智能之机器学习基础——K-Means

K-Means 是一种无监督学习算法,用于将数据划分为 KKK 个簇(Clusters),使得每个簇中的样本尽可能接近其簇中心,簇之间尽可能远离。K-Means 常用于聚类分析,例如客户分群、图像分割等任务。

2643: 鼠鼠的薪水 while

include <bits/stdc++.h> using namespace std; int maxx, a, b, c; int main( ) { cin >> a; b=10; c=3; while(b!=a) { if (c1||c2) { b+=7; } b--; c++; c%=7; maxx++; } cout << maxx; } 反思: while(b<a) 做错,正确为: while(b!=a)

人工智能之机器学习基础——决策树(Decision Tree)

决策树是一种用于分类和回归的非参数模型,能够通过一系列的条件判断(分裂规则)将输入数据划分为子区域,从而完成预测任务。 1. 决策树的基本结构 决策树由以下三部分组成:根节点(Root Node):表示整个数据集,最初没有任何划分。内部节点(Internal Node):表示一个特定…

Vue UI创建项目问题

1.使用cmd命令行【Vue UI】创建项目出现【 Failed to get response from https://registry.npm.taobao.org/vue-cli-version-marker】 原因:镜像问题 处理:npm config get registry查看镜像源是【https://registry.npm.taobao.org/】 替换镜像源:(换成TX的,TaoBao的创建项…

基于Java+Springboot+Jpa+Mysql实现的在线网盘文件分享系统功能设计与实现二

今天发布的是一款由springboot+freemark+jpa+MySQL实现的在线网盘文件分享系统,其功能跟百度网盘非常类似,普通用户可以注册登录,注册后默认分配1G的空间大小,登录进去后可以新建文件夹、上传各种类型的文件、文件移动、复制、下载、删除、分享,分享分为私密分享和公开分享…

『模拟赛』多校A层冲刺NOIP2024模拟赛24

『模拟赛记录』多校A层冲刺NOIP2024模拟赛24Rank 。A. 选取字符串 签。 一眼想到动物园那个题面,kmp 求出的 next 数组实际上就是既是它的后缀又是它的前缀的字符串中(它本身除外),最长的长度。 那么可以想到,某个串除了它自身外,能选的 p/q 最长即为它的 next。更短的可…

osg三维场景中拾取鼠标在模型表面的点击点

osg三维场景中拾取鼠标在模型表面的点击点#include <osg/Group> #include <osg/Geode> #include <osg/ShapeDrawable> #include <osgDB/ReadFile> #include <osgViewer/Viewer> #include <osgGA/GUIEventHandler> #include <osgGA/Trac…

流和向量(Streams and Vectors)

在GNU Radio的官方教程中,提到了两个重要的块连接方式:流和向量(Streams and Vectors)。具体的章节链接为: 🔗:流和向量 - GNU Radio 🔗:带有向量的 Python 块 - GNU Radio 官方文档对流和向量的概念和使用有着简介和直观的讲述,但对于两者之间的转化方法以及何时使…