Uses of Interface
org.apache.shiro.crypto.hash.HashRequest

Packages that use HashRequest
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. 
org.apache.shiro.crypto.hash Cryptographic Hashing components that greatly simplify one-way data hashing in an application. 
 

Uses of HashRequest in org.apache.shiro.authc.credential
 

Methods in org.apache.shiro.authc.credential that return HashRequest
protected  HashRequest DefaultPasswordService.buildHashRequest(ByteSource plaintext, Hash saved)
           
protected  HashRequest DefaultPasswordService.createHashRequest(ByteSource plaintext)
           
 

Uses of HashRequest in org.apache.shiro.crypto.hash
 

Classes in org.apache.shiro.crypto.hash that implement HashRequest
 class SimpleHashRequest
          Simple implementation of HashRequest that can be used when interacting with a HashService.
 

Methods in org.apache.shiro.crypto.hash that return HashRequest
 HashRequest HashRequest.Builder.build()
          Builds a HashRequest instance reflecting the specified configuration.
 

Methods in org.apache.shiro.crypto.hash with parameters of type HashRequest
 Hash HashService.computeHash(HashRequest request)
          Computes a hash based on the given request.
 Hash DefaultHashService.computeHash(HashRequest request)
          Computes and responds with a hash based on the specified request.
protected  String DefaultHashService.getAlgorithmName(HashRequest request)
           
protected  int DefaultHashService.getIterations(HashRequest request)
           
protected  ByteSource DefaultHashService.getPublicSalt(HashRequest request)
          Returns the public salt that should be used to compute a hash based on the specified request or null if no public salt should be used.
 



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