-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpin.go
160 lines (152 loc) · 3.87 KB
/
pin.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
package bot
import (
"bytes"
"context"
"crypto/aes"
"crypto/cipher"
"crypto/ed25519"
"crypto/rand"
"encoding/base64"
"encoding/binary"
"encoding/hex"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"time"
"github.com/gofrs/uuid/v5"
"golang.org/x/crypto/curve25519"
)
func EncryptEd25519PIN(pin string, iterator uint64, current *SafeUser) (string, error) {
privateBytes, err := hex.DecodeString(current.SessionPrivateKey)
if err != nil {
return "", err
}
private := ed25519.NewKeyFromSeed(privateBytes)
public, err := hex.DecodeString(current.ServerPublicKey)
if err != nil {
return "", err
}
var curvePriv, pub [32]byte
PrivateKeyToCurve25519(&curvePriv, private)
public, err = PublicKeyToCurve25519(ed25519.PublicKey(public))
if err != nil {
return "", err
}
copy(pub[:], public[:])
keyBytes, err := curve25519.X25519(curvePriv[:], pub[:])
if err != nil {
return "", err
}
pinByte, err := hex.DecodeString(pin)
if err != nil {
return "", err
}
timeBytes := make([]byte, 8)
binary.LittleEndian.PutUint64(timeBytes, uint64(time.Now().Unix()))
pinByte = append(pinByte, timeBytes...)
iteratorBytes := make([]byte, 8)
binary.LittleEndian.PutUint64(iteratorBytes, iterator)
pinByte = append(pinByte, iteratorBytes...)
padding := aes.BlockSize - len(pinByte)%aes.BlockSize
padtext := bytes.Repeat([]byte{byte(padding)}, padding)
pinByte = append(pinByte, padtext...)
block, err := aes.NewCipher(keyBytes[:])
if err != nil {
return "", err
}
ciphertext := make([]byte, aes.BlockSize+len(pinByte))
iv := ciphertext[:aes.BlockSize]
_, err = io.ReadFull(rand.Reader, iv)
if err != nil {
return "", err
}
mode := cipher.NewCBCEncrypter(block, iv)
mode.CryptBlocks(ciphertext[aes.BlockSize:], pinByte)
return base64.RawURLEncoding.EncodeToString(ciphertext), nil
}
func VerifyPIN(ctx context.Context, pin string, user *SafeUser) (*User, error) {
encryptedPIN, err := EncryptEd25519PIN(pin, uint64(time.Now().UnixNano()), user)
if err != nil {
return nil, err
}
data, err := json.Marshal(map[string]interface{}{
"pin_base64": encryptedPIN,
})
if err != nil {
return nil, err
}
path := "/pin/verify"
token, err := SignAuthenticationToken("POST", path, string(data), user)
if err != nil {
return nil, err
}
body, err := Request(ctx, "POST", path, data, token)
if err != nil {
return nil, err
}
var resp struct {
Data *User `json:"data"`
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error.Code > 0 {
return nil, resp.Error
}
return resp.Data, nil
}
func VerifyPINTip(ctx context.Context, su *SafeUser) (*User, error) {
TIPVerify := "TIP:VERIFY:"
timestamp := time.Now().UnixNano()
tb := []byte(fmt.Sprintf("%s%032d", TIPVerify, timestamp))
pin, err := signTipBody(tb, su.SpendPrivateKey)
source, err := EncryptEd25519PIN(pin, uint64(timestamp), su)
if err != nil {
return nil, err
}
data, err := json.Marshal(map[string]interface{}{
"pin_base64": source,
"timestamp": timestamp,
})
if err != nil {
return nil, err
}
path := "/pin/verify"
token, err := SignAuthenticationToken("POST", path, string(data), su)
if err != nil {
return nil, err
}
id := uuid.Must(uuid.NewV4()).String()
log.Println(id)
body, err := RequestWithId(ctx, "POST", path, data, token, id)
if err != nil {
return nil, err
}
var resp struct {
Data *User `json:"data"`
Error Error `json:"error"`
}
err = json.Unmarshal(body, &resp)
if err != nil {
return nil, BadDataError(ctx)
}
if resp.Error.Code > 0 {
return nil, resp.Error
}
return resp.Data, nil
}
func signTipBody(body []byte, pin string) (string, error) {
pinBuf, err := hex.DecodeString(pin)
if err != nil {
return "", err
}
if len(pinBuf) != 32 {
return "", errors.New("invalid ed25519 private")
}
sigBuf := ed25519.Sign(ed25519.NewKeyFromSeed(pinBuf), body)
return hex.EncodeToString(sigBuf), nil
}