2012年7月29日Apache Shiro开源小组发布了Apache Shiro 1.2.1,此版本主要是修复了1.2.0版本中的11个bug。
Apache Shiro 1.2版本有哪些新功能点呢?通过其官方网站可以看到主要包含在4个方面:Tools, Core, Web, and Support Modules。
Tools
提供了一个命令行工具包可以为各种数据生成哈希值:shiro-tools-hasher-1.2.1-cli.jar
。
运行 java -jar shiro-tools-hasher-1.2.1-cli.jar 可看到帮助信息,此工具包可以为各种形式的数据生成哈希值,比如:标准的文本,密码,字符串,文件或是URL资源等。
帮助信息如下,已经很直观了:
usage: java -jar shiro-tools-hasher-<version>.jar [options] [<value>]
Print a cryptographic hash (aka message digest) of the specified <value>.
--
Options:
-a,--algorithm <name> hash algorithm name. Defaults to SHA-256
when password hashing, MD5 otherwise.
-d,--debug show additional error (stack trace)
information.
-f,--format <arg> hash output format. Defaults to 'shiro1'
when password hashing, 'hex' otherwise.
See below for more information.
-gs,--gensalt generate and use a random salt. Defaults
to true when password hashing, false
otherwise.
-gss,--gensaltsize <numBits> the number of salt bits (not bytes!) to
generate. Defaults to 128.
-help,--help show this help message.
-i,--iterations <num> number of hash iterations. Defaults to
500000 when password hashing, 1 otherwise.
-ngs,--nogensalt do NOT generate and use a random salt
(valid during password hashing).
-p,--password hash a password (disable typing echo)
-pnc,--pnoconfirm hash a password (disable typing echo) but
disable password confirmation prompt.
-r,--resource read and hash the resource located at
<value>. See below for more information.
-s,--salt <sval> use the specified salt. <arg> is
plaintext.
-sb,--saltbytes <encTxt> use the specified salt bytes. <arg> is
hex or base64 encoded text.
<value> is optional only when hashing passwords (see below). It is
required all other times.
Password Hashing:
---------------------------------
Specify the -p/--password option and DO NOT enter a <value>. You will
be prompted for a password and characters will not echo as you type.
Salting:
---------------------------------
Specifying a salt:
You may specify a salt using the -s/--salt option followed by the salt
value. If the salt value is a base64 or hex string representing a
byte array, you must specify the -sb/--saltbytes option to indicate this,
otherwise the text value bytes will be used directly.
When using -sb/--saltbytes, the -s/--salt value is expected to be a
base64-encoded string by default. If the value is a hex-encoded string,
you must prefix the string with 0x (zero x) to indicate a hex value.
Generating a salt:
Use the -sg/--saltgenerated option if you don't want to specify a salt,
but want a strong random salt to be generated and used during hashing.
The generated salt size defaults to 128 bits. You may specify
a different size by using the -sgs/--saltgeneratedsize option followed by
a positive integer (size is in bits, not bytes).
Because a salt must be specified if computing the
hash later, generated salts will be printed, defaulting to base64
encoding. If you prefer to use hex encoding, additionally use the
-sgh/--saltgeneratedhex option.
Files, URLs and classpath resources:
---------------------------------
If using the -r/--resource option, the <value> represents a resource path.
By default this is expected to be a file path, but you may specify
classpath or URL resources by using the classpath: or url: prefix
respectively.
Some examples:
<command> -r fileInCurrentDirectory.txt
<command> -r ../../relativePathFile.xml
<command> -r ~/documents/myfile.pdf
<command> -r /usr/local/logs/absolutePathFile.log
<command> -r url:http://foo.com/page.html
<command> -r classpath:/WEB-INF/lib/something.jar
Output Format:
---------------------------------
Specify the -f/--format option followed by either 1) the format ID (as defined
by the org.apache.shiro.crypto.hash.format.DefaultHashFormatFactory
JavaDoc) or 2) the fully qualified org.apache.shiro.crypto.hash.format.HashFormat
implementation class name to instantiate and use for formatting.
The default output format is 'shiro1' which is a Modular Crypt Format (MCF)
that shows all relevant information as a dollar-sign ($) delimited string.
This format is ideal for use in Shiro's text-based user configuration (e.g.
shiro.ini or a properties file).
Core
增加了PasswordService组件,目的是将密码相关的一些逻辑和配置抽象出来,使程序的开发人员只关注密码本身即可。相应哈希算法,迭代,密码加盐等都在组件内部实现。
同时这种组件形式可以很好地复用。
增加了PasswordMatcher组件,PasswordMatcher实现了CredentialsMatcher接口,在认证过程中使用PasswordService时进行密码的比对。
password service 和 password matcher都可配置到Realm中使用。
如果使用文本方式配置用户账号的话,可以使用上述新增的组件和命令行工具在文本中安全地存储用户的密码。
认证缓存是一个新加的功能,主要应用在一些无状态的框架中,如REST或者基于SOAP的应用程序,在这些应用中每个请求都需要进行身份验证。这样就需要支持应用程序在相对较短的时间内对相同账号进行重复验证。如果每次验证时都需要访问数据源就会造成很大的压力,认证缓存将账号信息进行缓存以被短时间内的使用来减轻后台的数据源压力。
想要使用认证缓存机制必须实现3步:
1、你自己的认证Realm必须继承AuthenticatingRealm类或者是AuthorizingRealm;
2、必须为SecurityManager配置CacheManager. cacheManager = com.foo.some.CacheManager securityManager.cacheManager = $cacheManager
3、必须为认证Realm启用认证缓存 myRealm.authenicationCachingEnabled = true
WEB
增加了两个接口Environment 和 WebEnvironment。可允许开发人员通过Environment实例获得Shiro相关的实例对象。Shiro Filter将依赖于WebEnvironment中的对象,
当Servlet Context Listener初始化好后它将放到WebEnvironment实例中供应用程序来访问。你可以通过WebUtils类来访问WebEnvironment和它包含的对象。
通过配置可非常方便地启用或停用过滤器,如下:
[main]
…
# uncomment the following line to disable the ‘ssl’ filter:
# ssl.enabled = false
[urls]
/securedEndpoint/** = ssl, someFilter, anotherFilter, ...
在开发的时候可以去掉注释ssl.enabled = false
这样就不会执行ssl通讯,在实际应用时加上注释就会执行ssl。
新增了LogoutFilter实现将用户注销然后重定向到一个默认页。
新增了NoSessionCreationFilter过滤器主要应用于象REST或者基于SOAP这样的应用框架中。使用此过滤器可防止有人意外地创建会话,NoSessionCreationFilter对实现认证缓存的作用很大,可很好支持象REST这样的无状态应用。
New Support Modules
Apache Shiro本身就支持很多第三方的接口,例如Spring Framework 和 AspectJ等。在1.2版本里又新增了三个模块:
1、Shiro support for Google Guice
2、Shiro support for Jasig CAS
3、Apache Karaf features.xml
分享到:
相关推荐
1.2.1版本发布后,社区中会有大量的讨论和解决方案,便于开发者解决问题。 总体来说,Apache Shiro 1.2.1 是一个全面的Java安全框架,它为开发者提供了简单易用的接口来处理认证、授权、加密和会话管理等安全问题。...
Apache Shiro 是一个强大且易用的 Java 安全框架,它提供了认证、授权、加密和会话管理功能,简化了开发人员处理安全的代码。Shiro 能够与任何应用进行集成,无论它是 Web 应用、独立的桌面应用还是分布式服务系统。...
你提到的 "shiro-root-1.2.2-source-release.zip" 文件是Apache Shiro 1.2.2版本的源码发布包,包含了该版本的所有源代码,这对于开发者来说是一个宝贵的资源,可以深入理解Shiro的内部工作原理以及如何定制和扩展其...
shiro是apache提供的强大而灵活的开源安全框架,它主要用来处理身份认证,授权,企业会话管理和加密。 shiro功能:用户验证、用户执行访问权限控制、在任何环境下使用session API,如cs程序。
在本压缩包中,你将找到 Shiro 的不同版本,包括 shiro-1.1.0、shiro-1.2.1 和 shiro-1.2.3,这些都是 Shiro 的核心库,包含了实现上述安全功能所需的全部类和接口。 1. **认证**:Shiro 提供了简单的认证机制,...
1.2.3是Shiro的一个版本号,具体的功能和API可能会随着版本更新而有所不同。 2. log4j-1.2.16.jar:Log4j 是一个流行的Java日志记录框架,用于记录应用程序运行过程中的各种信息,包括错误、警告和调试信息。在...
根据提供的信息,我们可以深入探讨Apache Shiro框架中的`Realm`组件及其在应用安全管理系统中的具体应用实例。Apache Shiro是一个强大且易于使用的Java安全框架,它执行身份验证、授权、密码加密和服务层安全性等...
Apache Shiro 和 Spring Security 是两个广泛使用的 Java 安全框架,它们都提供了强大的用户身份验证和授权功能。本文档将详细介绍如何在实际 Web 项目中整合 Shiro 和 LDAP 以实现高效、安全的身份验证。 1. 安全...
Apache Shiro是一个功能强大且灵活的开源安全框架,可以干净地处理身份验证,授权,企业会话管理,单点登录和加密服务。https://mirrors.tuna.tsinghua.edu.cn/apache/shiro/1.2.1/
SpringMVC 是一个基于 Java 语言的 web 应用程序框架,Shiro 是一个 Apache 下的一开源项目,旨在简化身份验证和授权。下面我们将通过实例代码,分享 SpringMVC+Shiro+maven 实现登录认证与权限授权管理的过程。 一...
在Java Web开发中,Spring和Apache Shiro是两个常用的框架,Spring用于处理业务逻辑和依赖注入,而Shiro则专注于安全管理,如用户认证、授权等。将两者整合可以构建出安全且易于管理的Web应用。下面我们将详细介绍...
- 使用Spring Security或Apache Shiro实现用户权限管理,保护系统资源。 - 通过缓存技术如Redis,提升数据读取速度,减轻数据库压力。 - 采用负载均衡和集群部署,提高系统可用性和扩展性。 5. 测试与维护 - 单元...
1.2.1 Apache Shiro安全框架 12 1.2.2 webSecrity安全框架 13 1.2.3 Enterprise Security API 13 2 基础安全编码规范 15 2.1 声明和初始化 15 2.1.1 避免类初始化的相互依赖 15 2.2 表达式 16 2.2.1 不可忽略方法的...
49,shiro-1.2.1.jar 50,slf4j-api-1.6.4.jar 51,slf4j-log4j12-1.6.4.jar 52,spring-aop-3.2.2.jar 53,spring-beans-3.2.2.jar 54,spring-context-3.2.2.jar 55,spring-context-support-3.2.2.jar 56,spring...
apache-commons框架 · commons-validator-1.3.1-src.zip · commons-lang3-3.2.1-src.zip · commons-fileupload-1.2.1-src.zip · commons-dbutils-1.3-bin.zip · commons-pool-1.5.5-bin.zip · ...
tagsoup-1.2.1.jar tiles-api-2.0.6.jar tiles-autotag-core-runtime-1.1.0.jar tiles-compat-3.0.1.jar tiles-core-2.0.6.jar tiles-el-3.0.1.jar tiles-extras-3.0.1.jar tiles-freemarker-3.0.1.jar tiles-jsp-...