feat: support OIDC id_token
- generate JWT id_token in token exchange - store optional nonce in authorization object - switch to RS256 algorithm for JWT signature - add JWKs endpoint to provide OIDC clients with public keys
This commit is contained in:
parent
ca84a0f99f
commit
d982f2af0d
29 changed files with 255 additions and 82 deletions
|
|
@ -14,7 +14,7 @@ enum UserStatus {
|
|||
Active
|
||||
}
|
||||
|
||||
#[derive(sqlx::FromRow, Deserialize, Serialize, Debug)]
|
||||
#[derive(sqlx::FromRow, Deserialize, Serialize, Debug, Clone)]
|
||||
#[fully_pub]
|
||||
struct User {
|
||||
/// uuid
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue