Package org.apache.shiro.authc.credential

Support for validating credentials (such as passwords or X509 certificates) during authentication via the CredentialsMatcher interface and its supporting implementations.

See:
          Description

Interface Summary
CredentialsMatcher Interface implemented by classes that can determine if an AuthenticationToken's provided credentials matches a corresponding account's credentials stored in the system.
 

Class Summary
AllowAllCredentialsMatcher A credentials matcher that always returns true when matching credentials no matter what arguments are passed in.
HashedCredentialsMatcher A HashedCredentialMatcher provides support for hashing of supplied AuthenticationToken credentials before being compared to those in the AuthenticationInfo from the data store.
Md2CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD2 hashed.
Md5CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be MD5 hashed.
Sha1CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA hashed.
Sha256CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-256 hashed.
Sha384CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-384 hashed.
Sha512CredentialsMatcher HashedCredentialsMatcher implementation that expects the stored AuthenticationInfo credentials to be SHA-512 hashed.
SimpleCredentialsMatcher Simple CredentialsMatcher implementation.
 

Package org.apache.shiro.authc.credential Description

Support for validating credentials (such as passwords or X509 certificates) during authentication via the CredentialsMatcher interface and its supporting implementations.



Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.