193ec8de2b
* AuthN: Move oauthserver to extsvcauth * Codeowners
17 lines
334 B
Go
17 lines
334 B
Go
package oasimpl
|
|
|
|
import (
|
|
"github.com/ory/fosite/handler/oauth2"
|
|
"github.com/ory/fosite/token/jwt"
|
|
)
|
|
|
|
func NewAuthSession() *oauth2.JWTSession {
|
|
sess := &oauth2.JWTSession{
|
|
JWTClaims: new(jwt.JWTClaims),
|
|
JWTHeader: new(jwt.Headers),
|
|
}
|
|
// Our tokens will follow the RFC9068
|
|
sess.JWTHeader.Add("typ", "at+jwt")
|
|
return sess
|
|
}
|