feat(core): 新增 PasswordEncoder 自动配置

* 密码添加配置。
* 密码加密解密
This commit is contained in:
jasmine
2024-01-30 15:53:41 +00:00
committed by Charles7c
parent 1a8c589083
commit 331c145fef
5 changed files with 160 additions and 0 deletions

View File

@@ -58,5 +58,11 @@
<groupId>cn.hutool</groupId>
<artifactId>hutool-db</artifactId>
</dependency>
<!-- 密码加解密-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-crypto</artifactId>
</dependency>
</dependencies>
</project>