Package | Description |
---|---|
com.nimbusds.jose.proc |
Secure framework for application-specific verification and decryption of
JOSE objects (with arbitrary payloads).
|
com.nimbusds.jwt.proc |
Secure framework for application-specific verification and decryption of
JSON Web Tokens (JWTs).
|
Modifier and Type | Class and Description |
---|---|
class |
BadJWEException
Bad JSON Web Encryption (JWE) exception.
|
class |
BadJWSException
Bad JSON Web Signature (JWS) exception.
|
Modifier and Type | Method and Description |
---|---|
Payload |
JOSEProcessor.process(JOSEObject joseObject,
C context)
Processes the specified JOSE object (unsecured, JWS or JWE).
|
Payload |
DefaultJOSEProcessor.process(JOSEObject joseObject,
C context) |
Payload |
JOSEProcessor.process(JWEObject jweObject,
C context)
Processes the specified JWE object by decrypting it.
|
Payload |
DefaultJOSEProcessor.process(JWEObject jweObject,
C context) |
Payload |
JOSEProcessor.process(JWSObject jwsObject,
C context)
Processes the specified JWS object by verifying its signature.
|
Payload |
DefaultJOSEProcessor.process(JWSObject jwsObject,
C context) |
Payload |
JOSEProcessor.process(PlainObject plainObject,
C context)
Processes the specified unsecured (plain) JOSE object, typically by
checking its context.
|
Payload |
DefaultJOSEProcessor.process(PlainObject plainObject,
C context) |
Payload |
JOSEProcessor.process(String compactEncodedJOSE,
C context)
Parses and processes the specified JOSE object (unsecured, JWS or
JWE).
|
Payload |
DefaultJOSEProcessor.process(String compactJOSE,
C context) |
Modifier and Type | Class and Description |
---|---|
class |
BadJWTException
Bad JSON Web Token (JWT) exception.
|
Modifier and Type | Method and Description |
---|---|
JWTClaimsSet |
DefaultJWTProcessor.process(EncryptedJWT encryptedJWT,
C context) |
JWTClaimsSet |
JWTProcessor.process(EncryptedJWT encryptedJWT,
C context)
Processes the specified encrypted JWT by decrypting it.
|
JWTClaimsSet |
DefaultJWTProcessor.process(JWT jwt,
C context) |
JWTClaimsSet |
JWTProcessor.process(JWT jwt,
C context)
Processes the specified JWT (unsecured, signed or encrypted).
|
JWTClaimsSet |
DefaultJWTProcessor.process(PlainJWT plainJWT,
C context) |
JWTClaimsSet |
JWTProcessor.process(PlainJWT plainJWT,
C context)
Processes the specified unsecured (plain) JWT, typically by checking
its context.
|
JWTClaimsSet |
DefaultJWTProcessor.process(SignedJWT signedJWT,
C context) |
JWTClaimsSet |
JWTProcessor.process(SignedJWT signedJWT,
C context)
Processes the specified signed JWT by verifying its signature.
|
JWTClaimsSet |
DefaultJWTProcessor.process(String jwtString,
C context) |
JWTClaimsSet |
JWTProcessor.process(String jwtString,
C context)
Parses and processes the specified JWT (unsecured, signed or
encrypted).
|
Copyright © 2017 Connect2id Ltd.. All rights reserved.