赞
踩
BCrypt是一种跨平台的文件加密工具,使用的是布鲁斯·施内尔在1993年发布的 Blowfish 加密算法。它是一种可生成随机盐值的单向Hash加密算法,Hash值中包含了上一步生成的盐值(22个字符)的不可逆加密算法。同一种明文,每次被加密后的密文都不一样,并且不可反向破解生成明文,破解难度非常大。
BCrypt加密后的密文结构如下图所示:
其中密文结构为:$是分割符, 2y是BCrypt加密版本号,10是cost的值,紧随其后的前22位是盐值(salt),最后的字符串就是密码的密文了。
BCrypt也是一种单向Hash加密算法,因此它不可被反向破解生成明文。由于计算中使用了随机盐值,并且在密文中包含了salt值,默认情况下每次生成的密文都是不同的。随机密文带来的好处是:避免了如果两个人或多个人的密码相同,密码加密后保存到数据库会得到相同的结果,以防破解一个就可以知道其他人的密码。
- <!--密码加密和校验工具包-->
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-crypto</artifactId>
- </dependency>
- @Configuration
- public class CommonConfig {
- /**
- * 密码加密器
- * BCryptPasswordEncoder方法采用SHA-256对密码进行加密
- * @return
- */
- @Bean
- public PasswordEncoder passwordEncoder(){
- return new BCryptPasswordEncoder();
- }
- }
- @SpringBootTest
- public class TestAll {
- @Autowired
- private PasswordEncoder passwordEncoder;
- @Test
- public void testPwd(){
- String pwd="1234";
- //加密 $2a$10$WAWV.QEykot8sHQi6FqqDOAnevkluOZJqZJ5YPxSnVVWqvuhx88Ha
- String encode = passwordEncoder.encode(pwd);
- System.out.println(encode);
- /*
- matches()匹配明文密码和加密后密码是否匹配,如果匹配,返回true,否则false
- just test
- */
- boolean flag = passwordEncoder.matches(pwd,"$2a$10$WAWV.QEykot8sHQi6FqqDOAnevkluOZJqZJ5YPxSnVVWqvuhx88Ha");
- System.out.println(flag);
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。