Package | Description |
---|---|
io.jsonwebtoken |
Modifier and Type | Method and Description |
---|---|
static SignatureAlgorithm |
SignatureAlgorithm.forName(String value)
Deprecated.
Looks up and returns the corresponding
SignatureAlgorithm enum instance based on a
case-insensitive name comparison. |
Jwt<?,?> |
JwtParser.parse(CharSequence jwt)
Parses the specified compact serialized JWT string based on the builder's current configuration state and
returns the resulting JWT, JWS, or JWE instance.
|
<T> T |
JwtParser.parse(CharSequence jwt,
JwtHandler<T> handler)
Deprecated.
since 0.12.0 in favor of
|
Jws<Claims> |
JwtParser.parseClaimsJws(CharSequence jws)
Deprecated.
since 0.12.0 in favor of
JwtParser.parseSignedClaims(CharSequence) . |
Jwt<Header,Claims> |
JwtParser.parseClaimsJwt(CharSequence jwt)
Deprecated.
since 0.12.0 in favor of
JwtParser.parseUnsecuredClaims(CharSequence) . |
Jws<byte[]> |
JwtParser.parseContentJws(CharSequence jws)
Deprecated.
since 0.12.0 in favor of
JwtParser.parseSignedContent(CharSequence) . |
Jwt<Header,byte[]> |
JwtParser.parseContentJwt(CharSequence jwt)
Deprecated.
since 0.12.0 in favor of
JwtParser.parseUnsecuredContent(CharSequence) . |
Copyright © 2014–2025 jsonwebtoken.io. All rights reserved.