Uses of Interface
com.nimbusds.jose.JWSSigner
Packages that use JWSSigner
Package
Description
Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.
Implementations of standard Javascript Object Signing and Encryption (JOSE)
algorithms.
JWS signer, JWS verifier, JWE encrypter and JWE decrypter factory
implementations.
Framework for producing JOSE objects (with arbitrary payloads).
-
Uses of JWSSigner in com.nimbusds.jose
Methods in com.nimbusds.jose with parameters of type JWSSignerModifier and TypeMethodDescriptionvoid
Signs this JWS object with the specified signer.void
Signs this JWS secured object with the specified JWS signer and adds the resulting signature to it.void
JWSObjectJSON.sign
(JWSHeader jwsHeader, UnprotectedHeader unprotectedHeader, JWSSigner signer) Signs this JWS secured object with the specified JWS signer and adds the resulting signature to it. -
Uses of JWSSigner in com.nimbusds.jose.crypto
Classes in com.nimbusds.jose.crypto that implement JWSSignerModifier and TypeClassDescriptionclass
Elliptic Curve Digital Signature Algorithm (ECDSA) signer ofJWS objects
.class
Ed25519 signer ofJWS objects
.class
Message Authentication Code (MAC) signer ofJWS objects
.class
RSA Signature-Scheme-with-Appendix (RSASSA) signer ofJWS objects
. -
Uses of JWSSigner in com.nimbusds.jose.crypto.factories
Methods in com.nimbusds.jose.crypto.factories that return JWSSignerModifier and TypeMethodDescriptionDefaultJWSSignerFactory.createJWSSigner
(JWK key) DefaultJWSSignerFactory.createJWSSigner
(JWK key, JWSAlgorithm alg) -
Uses of JWSSigner in com.nimbusds.jose.produce
Methods in com.nimbusds.jose.produce that return JWSSignerModifier and TypeMethodDescriptionJWSSignerFactory.createJWSSigner
(JWK key) Create a JWS signer based on the key.JWSSignerFactory.createJWSSigner
(JWK key, JWSAlgorithm alg) Create a JWS signer based on the key and algorithm.