| Package | Description |
|---|---|
| com.inmanlabs.commons.auth0.spring |
| Modifier and Type | Method and Description |
|---|---|
static JwtWebSecurityConfigurer |
JwtWebSecurityConfigurer.forHS256(String audience,
String issuer,
org.springframework.security.authentication.AuthenticationProvider provider)
Configures application authorization for JWT signed with HS256
|
static JwtWebSecurityConfigurer |
JwtWebSecurityConfigurer.forHS256(String audience,
String issuer,
byte[] secret)
Configures application authorization for JWT signed with HS256
|
static JwtWebSecurityConfigurer |
JwtWebSecurityConfigurer.forHS256WithBase64Secret(String audience,
String issuer,
String secret)
Configures application authorization for JWT signed with HS256
|
static JwtWebSecurityConfigurer |
JwtWebSecurityConfigurer.forRS256(String audience,
String issuer)
Configures application authorization for JWT signed with RS256.
|
static JwtWebSecurityConfigurer |
JwtWebSecurityConfigurer.forRS256(String audience,
String issuer,
org.springframework.security.authentication.AuthenticationProvider provider)
Configures application authorization for JWT signed with RS256
Will try to validate the token using the public key downloaded from "$issuer/.well-known/jwks.json"
and matched by the value of
kid of the JWT header |
Copyright © 2019. All rights reserved.