-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcognitosrp.go
261 lines (214 loc) · 7.51 KB
/
cognitosrp.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package cognitosrp
import (
"crypto/hmac"
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"encoding/hex"
"fmt"
"math/big"
"strings"
"time"
)
const (
// https://github.com/aws/amazon-cognito-identity-js/blob/master/src/AuthenticationHelper.js#L22
nHex = "FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1" +
"29024E088A67CC74020BBEA63B139B22514A08798E3404DD" +
"EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245" +
"E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED" +
"EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3D" +
"C2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F" +
"83655D23DCA3AD961C62F356208552BB9ED529077096966D" +
"670C354E4ABC9804F1746C08CA18217C32905E462E36CE3B" +
"E39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9" +
"DE2BCBF6955817183995497CEA956AE515D2261898FA0510" +
"15728E5A8AAAC42DAD33170D04507A33A85521ABDF1CBA64" +
"ECFB850458DBEF0A8AEA71575D060C7DB3970F85A6E1E4C7" +
"ABF5AE8CDB0933D71E8C94E04A25619DCEE3D2261AD2EE6B" +
"F12FFA06D98A0864D87602733EC86A64521F2B18177B200C" +
"BBE117577A615D6C770988C0BAD946E208E24FA074E5AB31" +
"43DB5BFCE0FD108E4B82D120A93AD2CAFFFFFFFFFFFFFFFF"
// https://github.com/aws/amazon-cognito-identity-js/blob/master/src/AuthenticationHelper.js#L49
gHex = "2"
infoBits = "Caldera Derived Key"
)
// NewCognitoSRP creates a CognitoSRP object
func NewCognitoSRP(username, password, poolId, clientId string, clientSecret *string) (*CognitoSRP, error) {
c := &CognitoSRP{
username: username,
password: password,
poolId: poolId,
clientId: clientId,
clientSecret: clientSecret,
}
if !strings.Contains(poolId, "_") {
return nil, fmt.Errorf("invalid Cognito User Pool ID (%s), must be in format: '<region>_<pool name>'", poolId)
}
c.poolName = strings.Split(poolId, "_")[1]
c.bigN = hexToBig(nHex)
c.g = hexToBig(gHex)
c.k = hexToBig(hexHash("00" + nHex + "0" + gHex))
c.a = c.generateRandomSmallA()
c.bigA = c.calculateA()
return c, nil
}
// CognitoSRP handles SRP authentication with AWS Cognito
type CognitoSRP struct {
username string
password string
poolId string
poolName string
clientId string
clientSecret *string
bigN *big.Int
g *big.Int
k *big.Int
a *big.Int
bigA *big.Int
}
// GetUsername returns the configured Cognito user username
func (csrp *CognitoSRP) GetUsername() string {
return csrp.username
}
// GetClientId returns the configured Cognito Cient ID
func (csrp *CognitoSRP) GetClientId() string {
return csrp.clientId
}
// GetUserPoolId returns the configured Cognito User Pool ID
func (csrp *CognitoSRP) GetUserPoolId() string {
return csrp.poolId
}
// GetUserPoolName returns the configured Cognito User Pool Name
func (csrp *CognitoSRP) GetUserPoolName() string {
return csrp.poolName
}
// GetAuthParams returns the AuthParms map of values required for make
// InitiateAuth requests
func (csrp *CognitoSRP) GetAuthParams() map[string]string {
params := map[string]string{
"USERNAME": csrp.username,
"SRP_A": bigToHex(csrp.bigA),
}
if secret, err := csrp.GetSecretHash(csrp.username); err == nil {
params["SECRET_HASH"] = secret
}
return params
}
// GetSecretHash returns the secret hash string required to make certain
// Cognito Identity Provider API calls (if client is configured with a secret)
func (csrp *CognitoSRP) GetSecretHash(username string) (string, error) {
if csrp.clientSecret == nil {
return "", fmt.Errorf("unable to create secret hash as client secret has not been configured")
}
var (
msg = username + csrp.clientId
key = []byte(*csrp.clientSecret)
h = hmac.New(sha256.New, key)
)
h.Write([]byte(msg))
sh := base64.StdEncoding.EncodeToString(h.Sum(nil))
return sh, nil
}
// PasswordVerifierChallenge returns the ChallengeResponses map to be used
// inside the cognitoidentityprovider.RespondToAuthChallengeInput object which
// fulfils the PASSWORD_VERIFIER Cognito challenge
func (csrp *CognitoSRP) PasswordVerifierChallenge(challengeParms map[string]string, ts time.Time) (map[string]string, error) {
var (
internalUsername = challengeParms["USERNAME"]
userId = challengeParms["USER_ID_FOR_SRP"]
saltHex = challengeParms["SALT"]
srpBHex = challengeParms["SRP_B"]
secretBlockB64 = challengeParms["SECRET_BLOCK"]
timestamp = ts.In(time.UTC).Format("Mon Jan 2 03:04:05 MST 2006")
hkdf = csrp.getPasswordAuthenticationKey(userId, csrp.password, hexToBig(srpBHex), hexToBig(saltHex))
)
secretBlockBytes, err := base64.StdEncoding.DecodeString(secretBlockB64)
if err != nil {
return nil, fmt.Errorf("unable to decode challenge parameter 'SECRET_BLOCK', %s", err.Error())
}
msg := csrp.poolName + userId + string(secretBlockBytes) + timestamp
hmacObj := hmac.New(sha256.New, hkdf)
hmacObj.Write([]byte(msg))
signature := base64.StdEncoding.EncodeToString(hmacObj.Sum(nil))
response := map[string]string{
"TIMESTAMP": timestamp,
"USERNAME": internalUsername,
"PASSWORD_CLAIM_SECRET_BLOCK": secretBlockB64,
"PASSWORD_CLAIM_SIGNATURE": signature,
}
if secret, err := csrp.GetSecretHash(internalUsername); err == nil {
response["SECRET_HASH"] = secret
}
return response, nil
}
func (csrp *CognitoSRP) generateRandomSmallA() *big.Int {
randomLongInt := getRandom(128)
return big.NewInt(0).Mod(randomLongInt, csrp.bigN)
}
func (csrp *CognitoSRP) calculateA() *big.Int {
bigA := big.NewInt(0).Exp(csrp.g, csrp.a, csrp.bigN)
if big.NewInt(0).Mod(bigA, csrp.bigN).Cmp(big.NewInt(0)) == 0 {
panic("Safety check for A failed. A must not be divisable by N")
}
return bigA
}
func (csrp *CognitoSRP) getPasswordAuthenticationKey(username, password string, bigB, salt *big.Int) []byte {
var (
userPass = fmt.Sprintf("%s%s:%s", csrp.poolName, username, password)
userPassHash = hashSha256([]byte(userPass))
uVal = calculateU(csrp.bigA, bigB)
xVal = hexToBig(hexHash(padHex(salt.Text(16)) + userPassHash))
gModPowXN = big.NewInt(0).Exp(csrp.g, xVal, csrp.bigN)
intVal1 = big.NewInt(0).Sub(bigB, big.NewInt(0).Mul(csrp.k, gModPowXN))
intVal2 = big.NewInt(0).Add(csrp.a, big.NewInt(0).Mul(uVal, xVal))
sVal = big.NewInt(0).Exp(intVal1, intVal2, csrp.bigN)
)
return computeHKDF(padHex(sVal.Text(16)), padHex(bigToHex(uVal)))
}
func hashSha256(buf []byte) string {
a := sha256.New()
a.Write(buf)
return hex.EncodeToString(a.Sum(nil))
}
func hexHash(hexStr string) string {
buf, _ := hex.DecodeString(hexStr)
return hashSha256(buf)
}
func hexToBig(hexStr string) *big.Int {
i, ok := big.NewInt(0).SetString(hexStr, 16)
if !ok {
panic(fmt.Sprintf("unable to covert \"%s\" to big Int", hexStr))
}
return i
}
func bigToHex(val *big.Int) string {
return val.Text(16)
}
func getRandom(n int) *big.Int {
b := make([]byte, n)
rand.Read(b)
return hexToBig(hex.EncodeToString(b))
}
func padHex(hexStr string) string {
if len(hexStr)%2 == 1 {
hexStr = fmt.Sprintf("0%s", hexStr)
} else if strings.Contains("89ABCDEFabcdef", string(hexStr[0])) {
hexStr = fmt.Sprintf("00%s", hexStr)
}
return hexStr
}
func computeHKDF(ikm, salt string) []byte {
ikmb, _ := hex.DecodeString(ikm)
saltb, _ := hex.DecodeString(salt)
extractor := hmac.New(sha256.New, saltb)
extractor.Write(ikmb)
prk := extractor.Sum(nil)
infoBitsUpdate := append([]byte(infoBits), byte(1))
extractor = hmac.New(sha256.New, prk)
extractor.Write(infoBitsUpdate)
hmacHash := extractor.Sum(nil)
return hmacHash[:16]
}
func calculateU(bigA, bigB *big.Int) *big.Int {
return hexToBig(hexHash(padHex(bigA.Text(16)) + padHex(bigB.Text(16))))
}