jasypt 加解密

  1. Maven依赖

  com.github.ulisesbocchio
  jasypt-spring-boot-starter
  1.16

  1. 配置
jasypt:
  encryptor:
    password: jiaxing #根密码
  1. 调用JAVA API 生成
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = PigAdminApplication.class)
public class ApplicationTest {
  @Autowiredprivate StringEncryptor stringEncryptor;

  @Test
public void testEnvironmentProperties(){
  System.out.println(stringEncryptor.encrypt("jiaxing"));
}

这个是依赖spring容器来进行加密。
不依赖spring容器直接使用JAVA方法:

@Test
public void testEnvironmentProperties() {
  //对应配置文件中对应的根密码
  System.setProperty("jasypt.encryptor.password", "jiaxing");
  StringEncryptor stringEncryptor = new DefaultLazyEncryptor(new StandardEnvironment();
  //加密方法
  System.out.println(stringEncryptor.encrypt("jiaxing"));
  //解密方法    
  System.out.println(stringEncryptor.decryptstringEncryptor.encrypt("jiaxing"))
}

你可能感兴趣的:(jasypt 加解密)