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 TypeMethodDescriptionvoidSigns this JWS object with the specified signer.voidSigns this JWS secured object with the specified JWS signer and adds the resulting signature to it.voidJWSObjectJSON.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 TypeClassDescriptionclassElliptic Curve Digital Signature Algorithm (ECDSA) signer ofJWS objects.classEd25519 signer ofJWS objects.classMessage Authentication Code (MAC) signer ofJWS objects.classRSA 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.