| Exceptions and Description |
|---|
| io.jsonwebtoken.SignatureException
in favor of
SecurityException; this class will be removed before 1.0 |
| Field and Description |
|---|
| io.jsonwebtoken.Header.DEPRECATED_COMPRESSION_ALGORITHM
use
Header.COMPRESSION_ALGORITHM instead. |
| Method and Description |
|---|
| io.jsonwebtoken.JwtBuilder.signWith(SignatureAlgorithm, byte[])
as of 0.10.0: use
Keys.hmacShaKeyFor(bytes) to
obtain the Key and then invoke JwtBuilder.signWith(Key) or JwtBuilder.signWith(Key, SignatureAlgorithm).
This method will be removed in the 1.0 release. |
| io.jsonwebtoken.JwtBuilder.signWith(SignatureAlgorithm, Key)
since 0.10.0: use
JwtBuilder.signWith(Key, SignatureAlgorithm) instead. This method will be removed
in the 1.0 release. |
| io.jsonwebtoken.JwtBuilder.signWith(SignatureAlgorithm, String)
as of 0.10.0: use
JwtBuilder.signWith(Key) or JwtBuilder.signWith(Key, SignatureAlgorithm) instead. This
method will be removed in the 1.0 release. |
Copyright © 2019. All rights reserved.