You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Holds if `signingMa` directly or indirectly sets a signing key for `expr`, which is a `JwtParser`.
22
-
* The `setSigningKey` and `setSigningKeyResolver` methods set a signing key for a `JwtParser`.
23
-
*
24
-
* Directly means code like this (the signing key is set directly on a `JwtParser`):
25
-
* ```java
26
-
* Jwts.parser().setSigningKey(key).parse(token);
27
-
* ```
28
-
*
29
-
* Indirectly means code like this (the signing key is set on a `JwtParserBuilder` indirectly setting the key of `JwtParser` that is created by the call to `build`):
0 commit comments