Uses of Class
com.nimbusds.jose.JWSAlgorithm

Packages that use JWSAlgorithm
com.nimbusds.jose Javascript Object Signing and Encryption (JOSE) classes. 
 

Uses of JWSAlgorithm in com.nimbusds.jose
 

Fields in com.nimbusds.jose declared as JWSAlgorithm
static JWSAlgorithm JWSAlgorithm.ES256
          ECDSA using P-256 curve and SHA-256 hash algorithm (recommended).
static JWSAlgorithm JWSAlgorithm.ES384
          ECDSA using P-384 curve and SHA-384 hash algorithm (optional).
static JWSAlgorithm JWSAlgorithm.ES512
          ECDSA using P-521 curve and SHA-512 hash algorithm (optional).
static JWSAlgorithm JWSAlgorithm.HS256
          HMAC using SHA-256 hash algorithm (required).
static JWSAlgorithm JWSAlgorithm.HS384
          HMAC using SHA-384 hash algorithm (optional).
static JWSAlgorithm JWSAlgorithm.HS512
          HMAC using SHA-512 hash algorithm (optional).
static JWSAlgorithm JWSAlgorithm.RS256
          RSA using SHA-256 hash algorithm (recommended).
static JWSAlgorithm JWSAlgorithm.RS384
          RSA using SHA-384 hash algorithm (optional).
static JWSAlgorithm JWSAlgorithm.RS512
          RSA using SHA-512 hash algorithm (optional).
 

Methods in com.nimbusds.jose that return JWSAlgorithm
 JWSAlgorithm ReadOnlyJWSHeader.getAlgorithm()
          Gets the algorithm (alg) parameter.
 JWSAlgorithm JWSHeader.getAlgorithm()
           
static JWSAlgorithm JWSAlgorithm.parse(String s)
          Parses a JWS algorithm from the specified string.
 

Methods in com.nimbusds.jose that return types with arguments of type JWSAlgorithm
 Set<JWSAlgorithm> DefaultJWSHeaderFilter.getAcceptedAlgorithms()
           
 Set<JWSAlgorithm> JWSHeaderFilter.getAcceptedAlgorithms()
          Gets the names of the accepted JWS algorithms.
 Set<JWSAlgorithm> DefaultJWSHeaderFilter.supportedAlgorithms()
          Returns the names of the supported JWS algorithms.
 Set<JWSAlgorithm> JWSAlgorithmProvider.supportedAlgorithms()
          Returns the names of the supported JWS algorithms.
 

Method parameters in com.nimbusds.jose with type arguments of type JWSAlgorithm
 void DefaultJWSHeaderFilter.setAcceptedAlgorithms(Set<JWSAlgorithm> acceptedAlgs)
           
 void JWSHeaderFilter.setAcceptedAlgorithms(Set<JWSAlgorithm> acceptedAlgs)
          Sets the names of the accepted JWS algorithms.
 

Constructors in com.nimbusds.jose with parameters of type JWSAlgorithm
JWSHeader(JWSAlgorithm alg)
          Creates a new JSON Web Signature (JWS) header.
 

Constructor parameters in com.nimbusds.jose with type arguments of type JWSAlgorithm
DefaultJWSHeaderFilter(Set<JWSAlgorithm> algs)
          Creates a new JWS header filter.
DefaultJWSHeaderFilter(Set<JWSAlgorithm> algs, Set<String> acceptedParams)
          Creates a new JWS header filter.
 



Copyright © 2013 NimbusDS. All Rights Reserved.