forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hmacsha.go
174 lines (140 loc) · 4.77 KB
/
hmacsha.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Copyright © 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author Aeneas Rekkas <aeneas+oss@aeneas.io>
* @copyright 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
* @license Apache-2.0
*
*/
// Package hmac is the default implementation for generating and validating challenges. It uses HMAC-SHA256 to
// generate and validate challenges.
package hmac
import (
"crypto/hmac"
"crypto/sha512"
"encoding/base64"
"fmt"
"strings"
"sync"
"github.com/pkg/errors"
"github.com/kalrashubham49/fosite"
)
// OldHMACStrategy is responsible for generating and validating challenges.
type OldHMACStrategy struct {
TokenEntropy int
GlobalSecret []byte
RotatedGlobalSecrets [][]byte
sync.Mutex
}
const (
// key should be at least 256 bit long, making it
minimumEntropy = 32
// the secrets (client and global) should each have at least 16 characters making it harder to guess them
minimumSecretLength = 32
)
var b64 = base64.URLEncoding.WithPadding(base64.NoPadding)
// Generate generates a token and a matching signature or returns an error.
// This method implements rfc6819 Section 5.1.4.2.2: Use High Entropy for Secrets.
func (c *OldHMACStrategy) Generate() (string, string, error) {
c.Lock()
defer c.Unlock()
if len(c.GlobalSecret) < minimumSecretLength {
return "", "", errors.Errorf("secret for signing HMAC-SHA256 is expected to be 32 byte long, got %d byte", len(c.GlobalSecret))
}
var signingKey [32]byte
copy(signingKey[:], c.GlobalSecret)
if c.TokenEntropy < minimumEntropy {
c.TokenEntropy = minimumEntropy
}
// When creating secrets not intended for usage by human users (e.g.,
// client secrets or token handles), the authorization server should
// include a reasonable level of entropy in order to mitigate the risk
// of guessing attacks. The token value should be >=128 bits long and
// constructed from a cryptographically strong random or pseudo-random
// number sequence (see [RFC4086] for best current practice) generated
// by the authorization server.
tokenKey, err := RandomBytes(c.TokenEntropy)
if err != nil {
return "", "", errors.WithStack(err)
}
signature := generateHMAC(tokenKey, &signingKey)
encodedSignature := b64.EncodeToString(signature)
encodedToken := fmt.Sprintf("%s.%s", b64.EncodeToString(tokenKey), encodedSignature)
return encodedToken, encodedSignature, nil
}
// Validate validates a token and returns its signature or an error if the token is not valid.
func (c *OldHMACStrategy) Validate(token string) (err error) {
var keys [][]byte
if len(c.GlobalSecret) > 0 {
keys = append(keys, c.GlobalSecret)
}
if len(c.RotatedGlobalSecrets) > 0 {
keys = append(keys, c.RotatedGlobalSecrets...)
}
for _, key := range keys {
if err = c.validate(key, token); err == nil {
return nil
} else if errors.Cause(err) == fosite.ErrTokenSignatureMismatch {
} else {
return err
}
}
if err == nil {
return errors.New("a secret for signing HMAC-SHA256 is expected to be defined, but none were")
}
return err
}
func (c *OldHMACStrategy) validate(secret []byte, token string) error {
if len(secret) < minimumSecretLength {
return errors.Errorf("secret for signing HMAC-SHA256 is expected to be 32 byte long, got %d byte", len(secret))
}
var signingKey [32]byte
copy(signingKey[:], secret)
split := strings.Split(token, ".")
if len(split) != 2 {
return errors.WithStack(fosite.ErrInvalidTokenFormat)
}
tokenKey := split[0]
tokenSignature := split[1]
if tokenKey == "" || tokenSignature == "" {
return errors.WithStack(fosite.ErrInvalidTokenFormat)
}
decodedTokenSignature, err := b64.DecodeString(tokenSignature)
if err != nil {
return errors.WithStack(err)
}
decodedTokenKey, err := b64.DecodeString(tokenKey)
if err != nil {
return errors.WithStack(err)
}
expectedMAC := generateHMAC(decodedTokenKey, &signingKey)
if !hmac.Equal(expectedMAC, decodedTokenSignature) {
// Hash is invalid
return errors.WithStack(fosite.ErrTokenSignatureMismatch)
}
return nil
}
func (c *OldHMACStrategy) Signature(token string) string {
split := strings.Split(token, ".")
if len(split) != 2 {
return ""
}
return split[1]
}
func generateHMAC(data []byte, key *[32]byte) []byte {
h := hmac.New(sha512.New512_256, key[:])
h.Write(data)
return h.Sum(nil)
}