BCrypt加密解密工具类方法

BCrypt加密解密工具类方法BCrypt 加密解密工具类方法 bcrypt 解密

BCrypt加密解密工具类方法

在这里插入图片描述
直接上代码

package com.loit.park.common.utils; import org.springframework.security.crypto.bcrypt.BCrypt; / * @author hanjinqun * @date 2023/5/13 * BCrypt工具类 */ public class BCryptUtils { / * 加密 */ public static String hashpw(String str) { return BCrypt.hashpw(str, BCrypt.gensalt()); } / * 校验 */ public static Boolean checkpw(String password, String hashpw) { return BCrypt.checkpw(password, hashpw); } public static void main(String[] args) { System.out.println(hashpw("123")); System.out.println(checkpw("123", "$2a$10$aFsOFzujtPCnUCUKcozsHux0rQ/3faAHGFSVb9Y.B1ntpmEhjRtru")); } } 

每一天都有新日光,每个人都有新期望。------酷酷的韩

今天的文章 BCrypt加密解密工具类方法分享到此就结束了,感谢您的阅读。
编程小号
上一篇 2025-01-05 22:01
下一篇 2025-01-05 21:57

相关推荐

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/bian-cheng-ji-chu/102236.html