-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpin.go
More file actions
173 lines (165 loc) · 4.13 KB
/
pin.go
File metadata and controls
173 lines (165 loc) · 4.13 KB
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
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) {
if pin == "" {
return "", nil
}
privateBytes, err := hex.DecodeString(current.SessionPrivateKey)
if err != nil {
return "", err
}
private := ed25519.NewKeyFromSeed(privateBytes)
if len(current.ServerPublicKey) == 0 {
return "", errors.New("missing setup server public key")
}
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]any{
"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 := fmt.Appendf(nil, "%s%032d", TIPVerify, timestamp)
pin, err := signTipBody(tb, su.SpendPrivateKey, su.IsSpendPrivateSum)
if err != nil {
panic(err)
}
source, err := EncryptEd25519PIN(pin, uint64(timestamp), su)
if err != nil {
return nil, err
}
data, err := json.Marshal(map[string]any{
"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, isSum bool) (string, error) {
pinBuf, err := hex.DecodeString(pin)
if err != nil {
return "", err
}
if len(pinBuf) != 32 {
return "", errors.New("invalid ed25519 private")
}
key := ed25519.NewKeyFromSeed(pinBuf)
if isSum {
copy(key[:], pinBuf)
}
sigBuf := ed25519.Sign(ed25519.NewKeyFromSeed(pinBuf), body)
return hex.EncodeToString(sigBuf), nil
}