MD5加密和Bcrypt加密 分手后的思念是犯贱 2022-04-03 09:49 356阅读 0赞 ### 一、MD5加密 ### //引入包 import org.springframework.util.DigestUtils; @Controller @RequestMapping("/resetpwd") public class ResetpwdController { @RequestMapping("/resetpassword") @ResponseBody public int resetpassword(Member member, String username, String pwd) { //加密 pwd = DigestUtils.md5DigestAsHex(pwd.getBytes()); member.setPassword(pwd); int i = memberService.resetPasswordByUsername(member, username); return i; } } ### 二、Bcrypt加密 ### 由于现在彩虹表的出现,使得即使不可逆的MD5加密也变得伪可逆(大数据存储,然后查询),所以采用更为安全的Bcrypt加密。 #### jar包下载 #### 百度云 [https://pan.baidu.com/s/1RU2ptA6uq4LrRuFqUhZ5bw][https_pan.baidu.com_s_1RU2ptA6uq4LrRuFqUhZ5bw] maven存储库 [https://mvnrepository.com/artifact/org.mindrot/jbcrypt][https_mvnrepository.com_artifact_org.mindrot_jbcrypt] #### pom.xml #### <!-- https://mvnrepository.com/artifact/org.mindrot/jbcrypt --> <dependency> <groupId>org.mindrot</groupId> <artifactId>jbcrypt</artifactId> <version>0.4</version> </dependency> package test; import org.mindrot.jbcrypt.BCrypt; public class Test1 { public static void main(String[] args) { String password = "123456";//$2a$10$GRS6nKF9Fp6ie7Vkj4KHI.LBQZDhzgQ2OcIu8sI90ucaL/wJ0D7He //加密 String pwt = BCrypt.hashpw(password, BCrypt.gensalt()); //解密 boolean pswFlag = BCrypt.checkpw(password,"$2a$10$GRS6nKF9Fp6ie7Vkj4KHI.LBQZDhzgQ2OcIu8sI90ucaL/wJ0D7He"); System.out.println(pwt+"===="+pswFlag); } } 实验效果: ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM3Nzk2MDE3_size_16_color_FFFFFF_t_70] [https_pan.baidu.com_s_1RU2ptA6uq4LrRuFqUhZ5bw]: https://pan.baidu.com/s/1RU2ptA6uq4LrRuFqUhZ5bw [https_mvnrepository.com_artifact_org.mindrot_jbcrypt]: https://mvnrepository.com/artifact/org.mindrot/jbcrypt [watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM3Nzk2MDE3_size_16_color_FFFFFF_t_70]: /images/20220403/dbe9590eeff64a1b9fd687e516b5340f.png
相关 MD5加盐加密和Spring Security 使用BCrypt加密密码 文链接:[https://liuyanzhao.com/7569.html][https_liuyanzhao.com_7569.html] 1、MD5加盐加密... Love The Way You Lie/ 2024年04月19日 11:20/ 0 赞/ 84 阅读
相关 MD5加密 背景: 今看了关于MD5加密的一些资料,才发现有些应用的加密算法就是用的MD5加密,比如注册密码、SVN在比对异同的时候.....都使用的比对MD值。本文要解决的问题包括介绍 曾经终败给现在/ 2022年08月05日 19:30/ 0 赞/ 16 阅读
相关 MD5加密 一、MD5概念 MD5,全名Message Digest Algorithm 5 ,中文名为消息摘要[算法][Link 1]第五版, 为计算机安全领域广泛使用的一种散列函 秒速五厘米/ 2022年07月13日 14:39/ 0 赞/ 13 阅读
相关 MD5加密 1. package com.nebula.app.app.common.utils; 2. 3. import java.math.BigInteger; 古城微笑少年丶/ 2022年05月23日 07:56/ 0 赞/ 283 阅读
相关 MD5加密 /// <summary> /// md5加密 /// </summary> /// <param name="str">要加密的内 超、凢脫俗/ 2022年04月08日 19:24/ 0 赞/ 283 阅读
相关 MD5加密和Bcrypt加密 一、MD5加密 //引入包 import org.springframework.util.DigestUtils; @Controll 分手后的思念是犯贱/ 2022年04月03日 09:49/ 0 赞/ 357 阅读
相关 MD5加密 MD5的全称是MD5信息摘要算法(英文:MD5 Message-Digest Algorithm ),一种被广泛使用的密码散列函数,可以产生一个128位(16字节,1字节8位 淡淡的烟草味﹌/ 2022年02月15日 02:06/ 0 赞/ 326 阅读
相关 MD5加密 UTIL工具类 MD5Util package com.kude.util; import org.springframework.uti 悠悠/ 2021年11月22日 10:22/ 0 赞/ 441 阅读
相关 MD5加密 import java.security.MessageDigest; import java.security.NoSuchAlgorithmExceptio 水深无声/ 2021年09月26日 06:22/ 0 赞/ 583 阅读
还没有评论,来说两句吧...