
com.nimbusds.jose.JWSAlgorithmProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
package com.nimbusds.jose;
import java.util.Set;
/**
* Common interface for JSON Web Signature (JWS) {@link JWSSigner signers} and
* {@link JWSVerifier verifiers}.
*
* Callers can query the JWS provider to determine its algorithm
* capabilities.
*
* @author Vladimir Dzhuvinov
* @version $version$ (2014-04-20)
*/
public interface JWSAlgorithmProvider extends AlgorithmProvider {
/**
* Returns the names of the supported JWS algorithms. These correspond
* to the {@code alg} JWS header parameter.
*
* @return The supported JWS algorithms, empty set if none.
*/
public Set supportedAlgorithms();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy