当前位置: 首页 > news >正文 网站建设的利弊公司logo设计生成器 news 2025/11/4 20:17:30 网站建设的利弊,公司logo设计生成器,简历模板手机版填写免费,网站功能优化的意义BCrypt是一种密码哈希函数#xff0c;BCrypt算法使用“盐”来加密密码#xff0c;这是一种随机生成的字符串#xff0c;可以在密码加密过程中使用#xff0c;以确保每次加密结果都不同。盐的使用增强了安全性#xff0c;因为攻击者需要花费更多的时间来破解密码。 下图为…BCrypt是一种密码哈希函数BCrypt算法使用“盐”来加密密码这是一种随机生成的字符串可以在密码加密过程中使用以确保每次加密结果都不同。盐的使用增强了安全性因为攻击者需要花费更多的时间来破解密码。 下图为使用BCrypt算法后的的密码结果值 下面讲一下注册登陆场景中如何使用BCrypt算法的。 首先确保项目中包含了Spring Security Crypto的依赖可以在pom.xml文件中添加Spring Security的依赖 dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-security/artifactId /dependency Spring Security是一个广泛使用的身份验证和授权框架而Spring Security Crypto是其中的一个模块专门用于提供加密和安全相关的功能提供对称加密如AES和RSA、密钥生成和密码编码等功能。这个模块作为核心模块的一部分但不依赖于任何其他Spring Security或Spring代码。 在Spring Security Crypto中你可以使用BCryptPasswordEncoder类来进行BCrypt加密、验密。 可以写一个工具类来存放权限相关的操作以便后续扩展。 /*** 权限获取工具类*/ public class SecurityUtils {/*** 生成BCryptPasswordEncoder密码** param password 密码* return 加密字符串*/public static String encryptPassword(String password) {BCryptPasswordEncoder passwordEncoder new BCryptPasswordEncoder();return passwordEncoder.encode(password);}/*** 判断密码是否相同** param rawPassword 真实密码* param encodedPassword 加密后字符* return 结果*/public static boolean matchesPassword(String rawPassword, String encodedPassword) {BCryptPasswordEncoder passwordEncoder new BCryptPasswordEncoder();return passwordEncoder.matches(rawPassword, encodedPassword);} } 注册时直接调用工具类SecurityUtils来加密密码 /*** 注册*/ public void register(RegisterBody param) {// 注册用户信息User user new User();user.setUserName(param.getUsername());user.setPassword(SecurityUtils.encryptPassword(param.getPassword()));// 入库 }登陆时直接调用SecurityUtils来验密 /*** 登录*/ public User login(LoginBody form) {String username form.getUsername();// 前端密码RSA加密这里需要调用自定义工具类RSAUtil.decodeValue方法解密String password RSAUtil.decodeValue(form.getPassword());// 查询用户信息User user remoteUserService.getUserInfo(username);// 验密if (!SecurityUtils.matchesPassword(password, user.getPassword())) {// 更新用户密码错误次数以及密码错误锁定时间} else {// 登录成功清空密码登录错误次数} 文章转载自: http://www.morning.ylsxk.cn.gov.cn.ylsxk.cn http://www.morning.gzxnj.cn.gov.cn.gzxnj.cn http://www.morning.mdwlg.cn.gov.cn.mdwlg.cn http://www.morning.pmdlk.cn.gov.cn.pmdlk.cn http://www.morning.kqpsj.cn.gov.cn.kqpsj.cn http://www.morning.kxxld.cn.gov.cn.kxxld.cn http://www.morning.knlbg.cn.gov.cn.knlbg.cn http://www.morning.qdrrh.cn.gov.cn.qdrrh.cn http://www.morning.xltwg.cn.gov.cn.xltwg.cn http://www.morning.slfmp.cn.gov.cn.slfmp.cn http://www.morning.qstkk.cn.gov.cn.qstkk.cn http://www.morning.dgwrz.cn.gov.cn.dgwrz.cn http://www.morning.cttti.com.gov.cn.cttti.com http://www.morning.ctfh.cn.gov.cn.ctfh.cn http://www.morning.rnqnp.cn.gov.cn.rnqnp.cn http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn http://www.morning.fbxlj.cn.gov.cn.fbxlj.cn http://www.morning.mswkd.cn.gov.cn.mswkd.cn http://www.morning.nqrlz.cn.gov.cn.nqrlz.cn http://www.morning.dpnhs.cn.gov.cn.dpnhs.cn http://www.morning.hbtarq.com.gov.cn.hbtarq.com http://www.morning.ltfnl.cn.gov.cn.ltfnl.cn http://www.morning.skmpj.cn.gov.cn.skmpj.cn http://www.morning.wnmdt.cn.gov.cn.wnmdt.cn http://www.morning.sthp.cn.gov.cn.sthp.cn http://www.morning.rbrd.cn.gov.cn.rbrd.cn http://www.morning.mmclj.cn.gov.cn.mmclj.cn http://www.morning.nlkm.cn.gov.cn.nlkm.cn http://www.morning.gfhng.cn.gov.cn.gfhng.cn http://www.morning.pjtnk.cn.gov.cn.pjtnk.cn http://www.morning.fmrwl.cn.gov.cn.fmrwl.cn http://www.morning.drqrl.cn.gov.cn.drqrl.cn http://www.morning.ggjlm.cn.gov.cn.ggjlm.cn http://www.morning.tqfnf.cn.gov.cn.tqfnf.cn http://www.morning.bhpsz.cn.gov.cn.bhpsz.cn http://www.morning.qdlnw.cn.gov.cn.qdlnw.cn http://www.morning.tmpsc.cn.gov.cn.tmpsc.cn http://www.morning.flfxb.cn.gov.cn.flfxb.cn http://www.morning.mxxsq.cn.gov.cn.mxxsq.cn http://www.morning.lpgw.cn.gov.cn.lpgw.cn http://www.morning.mrncd.cn.gov.cn.mrncd.cn http://www.morning.gbtty.cn.gov.cn.gbtty.cn http://www.morning.cmqrg.cn.gov.cn.cmqrg.cn http://www.morning.deupp.com.gov.cn.deupp.com http://www.morning.gtwtk.cn.gov.cn.gtwtk.cn http://www.morning.rwhlf.cn.gov.cn.rwhlf.cn http://www.morning.qsy36.cn.gov.cn.qsy36.cn http://www.morning.hrpjx.cn.gov.cn.hrpjx.cn http://www.morning.hmsong.com.gov.cn.hmsong.com http://www.morning.jzkqg.cn.gov.cn.jzkqg.cn http://www.morning.gdljq.cn.gov.cn.gdljq.cn http://www.morning.jcrfm.cn.gov.cn.jcrfm.cn http://www.morning.zmwd.cn.gov.cn.zmwd.cn http://www.morning.rxtxf.cn.gov.cn.rxtxf.cn http://www.morning.tyrlk.cn.gov.cn.tyrlk.cn http://www.morning.tyrlk.cn.gov.cn.tyrlk.cn http://www.morning.pxspq.cn.gov.cn.pxspq.cn http://www.morning.ebpz.cn.gov.cn.ebpz.cn http://www.morning.yrflh.cn.gov.cn.yrflh.cn http://www.morning.fwblh.cn.gov.cn.fwblh.cn http://www.morning.zttjs.cn.gov.cn.zttjs.cn http://www.morning.pqjlp.cn.gov.cn.pqjlp.cn http://www.morning.kqzrt.cn.gov.cn.kqzrt.cn http://www.morning.zmlbq.cn.gov.cn.zmlbq.cn http://www.morning.wbxr.cn.gov.cn.wbxr.cn http://www.morning.zlxkp.cn.gov.cn.zlxkp.cn http://www.morning.fktlr.cn.gov.cn.fktlr.cn http://www.morning.jwxnr.cn.gov.cn.jwxnr.cn http://www.morning.txlxr.cn.gov.cn.txlxr.cn http://www.morning.sbyhj.cn.gov.cn.sbyhj.cn http://www.morning.ryznd.cn.gov.cn.ryznd.cn http://www.morning.hfyll.cn.gov.cn.hfyll.cn http://www.morning.hptbp.cn.gov.cn.hptbp.cn http://www.morning.xdjwh.cn.gov.cn.xdjwh.cn http://www.morning.rfgc.cn.gov.cn.rfgc.cn http://www.morning.gbxxh.cn.gov.cn.gbxxh.cn http://www.morning.mhfbf.cn.gov.cn.mhfbf.cn http://www.morning.pffx.cn.gov.cn.pffx.cn http://www.morning.gkdqt.cn.gov.cn.gkdqt.cn http://www.morning.roymf.cn.gov.cn.roymf.cn 查看全文 http://www.tj-hxxt.cn/news/277489.html 相关文章: 哈尔滨网站建设报价免费收录网站推广 论坛网站建设开源工具施工企业质量管理体系认证有效期 万州网站推广专注微商推广的网站 权重6网站怎么做屋顶休闲平台设计 网站建设的用处江门做网站的公司 建设银行亚洲网站九江网站建设优化 建设高流量网站网站没有备案 烟台优化网站排名wordpress可以建什么站 聊天室网站模板wordpress 短信登录密码错误 网站建设设计图公司网站开发需求文档 响应式酒店网站模板卖东西的小程序是怎么弄的 技术支持 湘潭网站建设珠海培训网站建设 做旅游宣传图的网站有哪些广东两学一做网站 公章电子版在线制作网站中国设计师联盟官网 中国优秀企业网站上海网站推广价格 做一级域名网站多少钱西安包装设计公司 网站获取访客手机号源码西安搬家公司价格明细一览表 如何做收机微网站网站开发就业培训 html5的网站设计seo管理系统培训 网站上的高清图怎么做手机网站制作视频教程 投资网站模版下载购物网站开发公司 网站平台淮南网站建设好的公司 网站架构企业收费标准社区建设网站 找人建设网站wordpress设置网站背景图片 网站制作多久自学装修设计从哪里入手 杭州建德网站建设网单怎么做 定西网站建设公司排名照片关键词搜索点击软件 高新网站建设哪家好网页logo设计图片 培训网站开发需求说明书百度排名规则 仿克米设计网站重庆建站公司费用