mirror of https://github.com/ory/hydra
19 lines
390 B
Go
19 lines
390 B
Go
// Copyright © 2025 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package oauth2
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/ory/hydra/v2/fosite"
|
|
)
|
|
|
|
func CallGetExpiresIn(r fosite.Requester, key fosite.TokenType, defaultLifespan time.Duration, now time.Time) time.Duration {
|
|
return getExpiresIn(r, key, defaultLifespan, now)
|
|
}
|
|
|
|
func CallSignature(token string) string {
|
|
return signature(token)
|
|
}
|