mirror of
https://github.com/1f349/mjwt.git
synced 2024-11-14 15:31:36 +00:00
21 lines
508 B
Go
21 lines
508 B
Go
|
package mjwt
|
||
|
|
||
|
import (
|
||
|
"github.com/golang-jwt/jwt/v4"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// Signer is used to generate MJWT tokens.
|
||
|
// Signer can also be used as a Verifier.
|
||
|
type Signer interface {
|
||
|
Verifier
|
||
|
GenerateJwt(sub, id string, dur time.Duration, claims Claims) (string, error)
|
||
|
SignJwt(claims jwt.Claims) (string, error)
|
||
|
Issuer() string
|
||
|
}
|
||
|
|
||
|
// Verifier is used to verify the validity MJWT tokens and extract the claim values.
|
||
|
type Verifier interface {
|
||
|
VerifyJwt(token string, claims baseTypeClaim) (*jwt.Token, error)
|
||
|
}
|