Uses of Interface
com.nimbusds.jose.JWEDecrypter
-
Packages that use JWEDecrypter 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.proc Framework for application-specific verification and decryption of JOSE objects (with arbitrary payloads). -
-
Uses of JWEDecrypter in com.nimbusds.jose
Methods in com.nimbusds.jose with parameters of type JWEDecrypter Modifier and Type Method Description voidJWEObject. decrypt(JWEDecrypter decrypter)Decrypts this JWE object with the specified decrypter. -
Uses of JWEDecrypter in com.nimbusds.jose.crypto
Classes in com.nimbusds.jose.crypto that implement JWEDecrypter Modifier and Type Class Description classAESDecrypterAES and AES GCM key wrap decrypter ofJWE objects.classDirectDecrypterDirect decrypter ofJWE objectswith a shared symmetric key.classECDH1PUDecrypterElliptic Curve Diffie-Hellman decrypter ofJWE objectsfor curves using an EC JWK.classECDH1PUX25519DecrypterElliptic Curve Diffie-Hellman decrypter ofJWE objectsfor curves using an OKP JWK.classECDHDecrypterElliptic Curve Diffie-Hellman decrypter ofJWE objectsfor curves using EC JWK keys.classPasswordBasedDecrypterPassword-based decrypter ofJWE objects.classRSADecrypterRSA decrypter ofJWE objects.classX25519DecrypterCurve25519 Elliptic Curve Diffie-Hellman decrypter ofJWE objects. -
Uses of JWEDecrypter in com.nimbusds.jose.crypto.factories
Methods in com.nimbusds.jose.crypto.factories that return JWEDecrypter Modifier and Type Method Description JWEDecrypterDefaultJWEDecrypterFactory. createJWEDecrypter(JWEHeader header, Key key) -
Uses of JWEDecrypter in com.nimbusds.jose.proc
Methods in com.nimbusds.jose.proc that return JWEDecrypter Modifier and Type Method Description JWEDecrypterJWEDecrypterFactory. createJWEDecrypter(JWEHeader header, Key key)Creates a new JWE decrypter for the specified header and key.
-