• 你有多了解Shiro认证-SSM?


    目录

     一,盐加密

    前言

            1.1 发展史

            1.2 pom依赖

            1.3 web.xml配置

            1.4 测试

    在线加密工具:https://www.cmd5.com/

     二,shiro认证

            2.1 完成登陆的方法 Mapper层的编写 接着biz层

            2.2 完成自定义realm(重点)

            3 Spring与shiro的整合(注意)

            4.applicationContext-shiro.xml

            5 测试


     一,盐加密

    前言

    在面对这个网络世界的时候,密码安全总是各个公司和用户都非常关心的一个内容,毕竟现在大家不管是休闲娱乐还是学习购物都是通过网上的帐号来进行消费的,所以我们通常会给用户的密码进行加密。在加密的时候,经常会听到“加盐”这个词,这是什么意思呢?

    我们通常会将用户的密码进行 Hash 加密,如果不加盐,即使是两层的 md5 都有可能通过彩虹表的方式进行破译。彩虹表就是在网上搜集的各种字符组合的 Hash 加密结果。而加盐,就是人为的通过一组随机字符与用户原密码的组合形成一个新的字符,从而增加破译的难度。就像做饭一样,加点盐味道会更好。

            1.1 发展史

    数据库密码的发展史
    第一个阶段:明文密码
    第二个阶段:md5加密 
    第三个阶段:md5加盐加密
    第四个阶段:md5加盐加密加次数

    由于明文密码泄露出去后很容易会造成不好的影响,没有保密性,所以就有了之后的各种加密方式 本期我们使用的是md5加盐加密加次数的加密方式

            1.2 pom依赖

    1. <groupId>org.apache.shirogroupId>
    2. <artifactId>shiro-coreartifactId>
    3. <version>1.3.2version>
    4. <dependency>
    5. <groupId>org.apache.shirogroupId>
    6. <artifactId>shiro-webartifactId>
    7. <version>1.3.2version>
    8. dependency>
    9. <dependency>
    10. <groupId>org.apache.shirogroupId>
    11. <artifactId>shiro-springartifactId>
    12. <version>1.3.2version>
    13. dependency>

            1.3 web.xml配置

    1. <filter>
    2. <filter-name>shiroFilterfilter-name>
    3. <filter-class>org.springframework.web.filter.DelegatingFilterProxyfilter-class>
    4. <init-param>
    5. <param-name>targetFilterLifecycleparam-name>
    6. <param-value>trueparam-value>
    7. init-param>
    8. filter>
    9. <filter-mapping>
    10. <filter-name>shiroFilterfilter-name>
    11. <url-pattern>/*url-pattern>
    12. filter-mapping>

    1.4 测试

    导入一个测试类 PasswordHelper

    1. package com.ljj.shiro;
    2. import org.apache.shiro.crypto.RandomNumberGenerator;
    3. import org.apache.shiro.crypto.SecureRandomNumberGenerator;
    4. import org.apache.shiro.crypto.hash.SimpleHash;
    5. /**
    6. * 用于shiro权限认证的密码工具类
    7. */
    8. public class PasswordHelper {
    9. /**
    10. * 随机数生成器
    11. */
    12. private static RandomNumberGenerator randomNumberGenerator = new SecureRandomNumberGenerator();
    13. /**
    14. * 指定hash算法为MD5
    15. */
    16. private static final String hashAlgorithmName = "md5";
    17. /**
    18. * 指定散列次数为1024次,即加密1024次
    19. */
    20. private static final int hashIterations = 1024;
    21. /**
    22. * true指定Hash散列值使用Hex加密存. false表明hash散列值用用Base64-encoded存储
    23. */
    24. private static final boolean storedCredentialsHexEncoded = true;
    25. /**
    26. * 获得加密用的盐
    27. *
    28. * @return
    29. */
    30. public static String createSalt() {
    31. return randomNumberGenerator.nextBytes().toHex();
    32. }
    33. /**
    34. * 获得加密后的凭证
    35. *
    36. * @param credentials 凭证(即密码)
    37. * @param salt 盐
    38. * @return
    39. */
    40. public static String createCredentials(String credentials, String salt) {
    41. SimpleHash simpleHash = new SimpleHash(hashAlgorithmName, credentials,
    42. salt, hashIterations);
    43. return storedCredentialsHexEncoded ? simpleHash.toHex() : simpleHash.toBase64();
    44. }
    45. /**
    46. * 进行密码验证
    47. *
    48. * @param credentials 未加密的密码
    49. * @param salt 盐
    50. * @param encryptCredentials 加密后的密码
    51. * @return
    52. */
    53. public static boolean checkCredentials(String credentials, String salt, String encryptCredentials) {
    54. return encryptCredentials.equals(createCredentials(credentials, salt));
    55. }
    56. public static void main(String[] args) {
    57. //盐
    58. String salt = createSalt();
    59. System.out.println(salt);
    60. System.out.println(salt.length());
    61. //凭证+盐加密后得到的密码
    62. String credentials = createCredentials("123456", salt);
    63. System.out.println(credentials);
    64. System.out.println(credentials.length());
    65. boolean b = checkCredentials("123456", salt, credentials);
    66. System.out.println(b);
    67. }
    68. }

    测试结果:

    结果解析:

    测试方法中的原密码:123456
    随机获得的盐:b837c1697d811401c6ecb857083fa7b8 
    长度:32
    加密后的密码:
    ba73e39bee3b55f925f57e6c4e3cb577
    长度 32
    与原密码匹配是否成功:
    true 

    在线加密工具:https://www.cmd5.com/

     二,shiro认证

            上一期我们的数据为定死的死数据,这次我们使用数据库数据

            

            2.1 完成登陆的方法 Mapper层的编写 接着biz层

            使用前端代码自动生成器

    1. <table schema="" tableName="t_shiro_permission" domainObjectName="Permission"
    2. enableCountByExample="false" enableDeleteByExample="false"
    3. enableSelectByExample="false" enableUpdateByExample="false">
    4. table>
    5. <table schema="" tableName="t_shiro_user" domainObjectName="User"
    6. enableCountByExample="false" enableDeleteByExample="false"
    7. enableSelectByExample="false" enableUpdateByExample="false">
    8. table>
    9. <table schema="" tableName="t_shiro_role" domainObjectName="Role"
    10. enableCountByExample="false" enableDeleteByExample="false"
    11. enableSelectByExample="false" enableUpdateByExample="false">
    12. table>
    13. <table schema="" tableName="t_shiro_user_role" domainObjectName="UserRole"
    14. enableCountByExample="false" enableDeleteByExample="false"
    15. enableSelectByExample="false" enableUpdateByExample="false">
    16. table>
    17. <table schema="" tableName="t_shiro_role_permission" domainObjectName="RolePermission"
    18. enableCountByExample="false" enableDeleteByExample="false"
    19. enableSelectByExample="false" enableUpdateByExample="false">
    20. table>

       生成成功

     在UserMapper.xml中编写一个按用户账号查询的方法

    1. !-- 通过用户名进行查询-->
    2. <select id="queryUserByserName" resultType="com.ljj.ssm.model.User" parameterType="java.lang.String" >
    3. select
    4. <include refid="Base_Column_List" />
    5. from t_shiro_user
    6. where username = #{userName}
    7. select>

    UserMapper.java

        User queryUserByserName(@Param("userName") String userName);
    

    Biz层:UserBiz

    1. package com.ljj.ssm.biz;
    2. import com.ljj.ssm.model.User;
    3. public interface UserBiz {
    4. int deleteByPrimaryKey(Integer userid);
    5. int insert(User record);
    6. int insertSelective(User record);
    7. User selectByPrimaryKey(Integer userid);
    8. User queryUserByserName(String userName);
    9. int updateByPrimaryKeySelective(User record);
    10. int updateByPrimaryKey(User record);
    11. }

    UserBizImpl:

    1. package com.ljj.ssm.biz.impl;
    2. import com.ljj.ssm.biz.UserBiz;
    3. import com.ljj.ssm.mapper.UserMapper;
    4. import com.ljj.ssm.model.User;
    5. import org.springframework.beans.factory.annotation.Autowired;
    6. import org.springframework.stereotype.Service;
    7. /**
    8. * @author ljj
    9. * @site www.ljj.com
    10. * @create 2022-08-25 16:54
    11. */
    12. @Service("userBiz")
    13. public class UserBizImpl implements UserBiz {
    14. @Autowired
    15. private UserMapper userMapper;
    16. @Override
    17. public int deleteByPrimaryKey(Integer userid) {
    18. return userMapper.deleteByPrimaryKey(userid);
    19. }
    20. @Override
    21. public int insert(User record) {
    22. return userMapper.insert(record);
    23. }
    24. @Override
    25. public int insertSelective(User record) {
    26. return userMapper.insertSelective(record);
    27. }
    28. @Override
    29. public User selectByPrimaryKey(Integer userid) {
    30. return userMapper.selectByPrimaryKey(userid);
    31. }
    32. @Override
    33. public User queryUserByserName(String userName) {
    34. return userMapper.queryUserByserName(userName);
    35. }
    36. @Override
    37. public int updateByPrimaryKeySelective(User record) {
    38. return userMapper.updateByPrimaryKeySelective(record);
    39. }
    40. @Override
    41. public int updateByPrimaryKey(User record) {
    42. return userMapper.updateByPrimaryKey(record);
    43. }
    44. }

    2.2 完成自定义realm(重点)

    1. package com.ljj.ssm.shiro;
    2. import com.ljj.ssm.biz.UserBiz;
    3. import com.ljj.ssm.model.User;
    4. import org.apache.shiro.authc.AuthenticationException;
    5. import org.apache.shiro.authc.AuthenticationInfo;
    6. import org.apache.shiro.authc.AuthenticationToken;
    7. import org.apache.shiro.authc.SimpleAuthenticationInfo;
    8. import org.apache.shiro.authz.AuthorizationInfo;
    9. import org.apache.shiro.realm.AuthorizingRealm;
    10. import org.apache.shiro.subject.PrincipalCollection;
    11. import org.apache.shiro.util.ByteSource;
    12. /**
    13. * @author ljj
    14. * @site www.ljj.com
    15. * @create 2022-08-25 17:04
    16. */
    17. public class MyRealm extends AuthorizingRealm {
    18. public UserBiz userBiz;
    19. public UserBiz getUserBiz() {
    20. return userBiz;
    21. }
    22. public void setUserBiz(UserBiz userBiz) {
    23. this.userBiz = userBiz;
    24. }
    25. /**
    26. * 授权
    27. * @param principals
    28. * @return
    29. * 相当于上一期中shiro_web.ini
    30. */
    31. @Override
    32. protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
    33. return null;
    34. }
    35. /**
    36. * 认证
    37. * @param token
    38. * @return
    39. * @throws AuthenticationException
    40. * 相当于上一期中shiro.ini
    41. */
    42. @Override
    43. protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
    44. String userName = token.getPrincipal().toString();
    45. User user = userBiz.queryUserByserName(userName);
    46. AuthenticationInfo info = new SimpleAuthenticationInfo(
    47. user.getUsername(),
    48. user.getPassword(),
    49. ByteSource.Util.bytes(user.getSalt()),
    50. this.getName() //realm的名字
    51. );
    52. return info;
    53. }
    54. }

    3 Spring与shiro的整合(注意)

    3.1 shiro在加载的时候,Spring上下文还没有加载完毕,所以@component与@autowised是不能使用的 所以此次要编写get set方法

     3.2 spring-shiro.xml文件中,MyRealm需要依赖的业务类:
        由于没有被Spring配置,所以需要指定bean的id 通过@Service("具体的名字")

    4.applicationContext-shiro.xml

    配置自定义的Realm&指定算法&Shiro核心过滤器

    1. "1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    5. <bean id="shiroRealm" class="com.ljj.ssm.shiro.MyRealm">
    6. <property name="userBiz" ref="userBiz" />
    7. <property name="credentialsMatcher">
    8. <bean id="credentialsMatcher" class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
    9. <property name="hashAlgorithmName" value="md5"/>
    10. <property name="hashIterations" value="1024"/>
    11. <property name="storedCredentialsHexEncoded" value="true"/>
    12. bean>
    13. property>
    14. bean>
    15. <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
    16. <property name="realm" ref="shiroRealm" />
    17. bean>
    18. <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
    19. <property name="securityManager" ref="securityManager" />
    20. <property name="loginUrl" value="/login"/>
    21. <property name="unauthorizedUrl" value="/unauthorized.jsp"/>
    22. <property name="filterChainDefinitions">
    23. <value>
    24. /user/login=anon
    25. /user/updatePwd.jsp=authc
    26. /admin/*.jsp=roles[admin]
    27. /user/teacher.jsp=perms["user:update"]
    28. value>
    29. property>
    30. bean>
    31. <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>
    32. beans>

    5 测试

     测试成功

     

     结论:DoGetAuthenticationInfo认证方法是web层执行subject.ligin出发的;


      

  • 相关阅读:
    【SA8295P 源码分析 (二)】109 - QNX 如何实现显示图片到 Screen 显示屏上
    类和对象的初步介绍
    使用Oracle SQL Developer管理Oracle Database Express Edition (XE)
    AIS数据下载并处理(python)
    基于jmeter的性能全流程测试
    SpringBoot使用redis解决分页查询大量数据慢的情况
    Vue2.7 + Vite3.2 + Rollup 组件库开发指南
    连接器使用四大注意要点
    DNS(二)
    神经网络的数学原理
  • 原文地址:https://blog.csdn.net/weixin_64313980/article/details/126526522