Uses of Class
net.adamcin.httpsig.api.Algorithm

Uses of Algorithm in net.adamcin.httpsig.api
 

Fields in net.adamcin.httpsig.api with type parameters of type Algorithm
static Collection<Algorithm> Constants.ALL_SUPPORTED_ALGORITHMS
           
 

Methods in net.adamcin.httpsig.api that return Algorithm
static Algorithm Algorithm.forName(String name)
           
 Algorithm Authorization.getAlgorithm()
           
static Algorithm Algorithm.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Algorithm[] Algorithm.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.adamcin.httpsig.api that return types with arguments of type Algorithm
 Set<Algorithm> Keychain.getAlgorithms()
           
 Set<Algorithm> Key.getAlgorithms()
           
 Set<Algorithm> DefaultKeychain.getAlgorithms()
           
 List<Algorithm> Challenge.getAlgorithms()
           
static List<Algorithm> Challenge.parseAlgorithms(String algorithms)
           
 

Methods in net.adamcin.httpsig.api with parameters of type Algorithm
 byte[] Key.sign(Algorithm algorithm, byte[] contentBytes)
          Signs the challengeHash using the specified signature Algorithm
 boolean Key.verify(Algorithm algorithm, byte[] contentBytes, byte[] signatureBytes)
          Verifies the signatureBytes against the challengeHash using an underlying public key
 

Method parameters in net.adamcin.httpsig.api with type arguments of type Algorithm
 Keychain Keychain.filterAlgorithms(Collection<Algorithm> algorithms)
          Filter this keychain by a Collection of supported Algorithms
 Keychain DefaultKeychain.filterAlgorithms(Collection<Algorithm> algorithms)
           
 

Constructors in net.adamcin.httpsig.api with parameters of type Algorithm
Authorization(String keyId, String signature, List<String> headers, Algorithm algorithm)
          Construct an Authorization instance
 

Constructor parameters in net.adamcin.httpsig.api with type arguments of type Algorithm
Challenge(String realm, List<String> headers, Collection<Algorithm> algorithms)
          Construct a Challenge instance
 



Copyright © 2013-2014. All Rights Reserved.