forked from searKing/golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jwt.hs256.go
108 lines (88 loc) · 2.94 KB
/
jwt.hs256.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright 2020 The searKing Author. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package jwt
import (
"context"
"crypto/sha256"
"fmt"
"strings"
jwt_ "github.com/ory/fosite/token/jwt"
"github.com/pkg/errors"
"github.com/ory/fosite"
)
// HS256JWTStrategy is responsible for generating and validating JWT challenges
type HS256JWTStrategy struct {
Key []byte
}
// Generate generates a new authorize code or returns an error. set secret
func (j *HS256JWTStrategy) Generate(ctx context.Context, claims jwt.Claims, header jwt_.Mapper) (string, string, error) {
if header == nil || claims == nil {
return "", "", errors.New("Either claims or header is nil.")
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
token.Header = assign(token.Header, header.ToMap())
var sig, sstr string
var err error
if sstr, err = token.SigningString(); err != nil {
return "", "", errors.WithStack(err)
}
if sig, err = token.Method.Sign(sstr, j.Key); err != nil {
return "", "", errors.WithStack(err)
}
return fmt.Sprintf("%s.%s", sstr, sig), sig, nil
}
// Validate validates a token and returns its signature or an error if the token is not valid.
func (j *HS256JWTStrategy) Validate(ctx context.Context, token string) (string, error) {
if _, err := j.Decode(ctx, token); err != nil {
return "", errors.WithStack(err)
}
return j.GetSignature(ctx, token)
}
// Decode will decode a JWT token
func (j *HS256JWTStrategy) Decode(ctx context.Context, token string) (*jwt.Token, error) {
// Parse the token.
parsedToken, err := jwt.Parse(token, func(t *jwt.Token) (interface{}, error) {
if _, ok := t.Method.(*jwt.SigningMethodHMAC); !ok {
return nil, errors.Errorf("Unexpected signing method: %v", t.Header["alg"])
}
return j.Key, nil
})
if err != nil {
return parsedToken, errors.WithStack(err)
} else if !parsedToken.Valid {
return parsedToken, errors.WithStack(fosite.ErrInactiveToken)
}
return parsedToken, err
}
// GetSignature will return the signature of a token
func (j *HS256JWTStrategy) GetSignature(ctx context.Context, token string) (string, error) {
split := strings.Split(token, ".")
if len(split) != 3 {
return "", errors.New("Header, body and signature must all be set")
}
return split[2], nil
}
// Hash will return a given hash based on the byte input or an error upon fail
func (j *HS256JWTStrategy) Hash(ctx context.Context, in []byte) ([]byte, error) {
// SigningMethodRS256
hash := sha256.New()
_, err := hash.Write(in)
if err != nil {
return []byte{}, errors.WithStack(err)
}
return hash.Sum([]byte{}), nil
}
// GetSigningMethodLength will return the length of the signing method
func (j *HS256JWTStrategy) GetSigningMethodLength() int {
return jwt.SigningMethodHS256.Hash.Size()
}
func assign(a, b map[string]interface{}) map[string]interface{} {
for k, w := range b {
if _, ok := a[k]; ok {
continue
}
a[k] = w
}
return a
}