Package org.keycloak.sdjwt
Class SdJwt
java.lang.Object
org.keycloak.sdjwt.SdJwt
Main entry class for selective disclosure jwt (SD-JWT).
- Author:
- Francis Pouatcha
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.fasterxml.jackson.databind.JsonNode
Prepare to a nested payload to this SD-JWT.static SdJwt.Builder
builder()
toString()
void
verify
(IssuerSignedJwtVerificationOpts verificationOpts) Verifies SD-JWT as to whether the Issuer-signed JWT's signature and disclosures are valid.
-
Field Details
-
DELIMITER
- See Also:
-
-
Method Details
-
asNestedPayload
public com.fasterxml.jackson.databind.JsonNode asNestedPayload()Prepare to a nested payload to this SD-JWT.dropping the algo claim.
- Parameters:
nestedSdJwt
-- Returns:
-
toSdJwtString
-
toString
-
getIssuerSignedJWT
-
getDisclosures
-
verify
Verifies SD-JWT as to whether the Issuer-signed JWT's signature and disclosures are valid.- Parameters:
verificationOpts
- Options to parameterize the Issuer-Signed JWT verification. A verifier must be specified for validating the Issuer-signed JWT. The caller is responsible for establishing trust in that associated public keys belong to the intended issuer.- Throws:
VerificationException
- if verification failed
-
builder
-