Uses of Interface
com.nimbusds.jose.JWSSigner
-
Packages that use JWSSigner Package Description com.nimbusds.jose Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.com.nimbusds.jose.crypto Implementations of standard Javascript Object Signing and Encryption (JOSE) algorithms.com.nimbusds.jose.crypto.factories JWS signer, JWS verifier, JWE encrypter and JWE decrypter factory implementations.com.nimbusds.jose.produce Framework for producing JOSE objects (with arbitrary payloads). -
-
Uses of JWSSigner in com.nimbusds.jose
Methods in com.nimbusds.jose with parameters of type JWSSigner Modifier and Type Method Description voidJWSObject. sign(JWSSigner signer)Signs this JWS object with the specified signer.voidJWSObjectJSON. sign(JWSHeader jwsHeader, JWSSigner signer)Signs 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 JWSSigner Modifier and Type Class Description classECDSASignerElliptic Curve Digital Signature Algorithm (ECDSA) signer ofJWS objects.classEd25519SignerEd25519 signer ofJWS objects.classMACSignerMessage Authentication Code (MAC) signer ofJWS objects.classRSASSASignerRSA 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 JWSSigner Modifier and Type Method Description JWSSignerDefaultJWSSignerFactory. createJWSSigner(JWK key)JWSSignerDefaultJWSSignerFactory. createJWSSigner(JWK key, JWSAlgorithm alg) -
Uses of JWSSigner in com.nimbusds.jose.produce
Methods in com.nimbusds.jose.produce that return JWSSigner Modifier and Type Method Description JWSSignerJWSSignerFactory. createJWSSigner(JWK key)Create a JWS signer based on the key.JWSSignerJWSSignerFactory. createJWSSigner(JWK key, JWSAlgorithm alg)Create a JWS signer based on the key and algorithm.
-