forked from bitcoin-sv/spv-wallet-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtotp.go
126 lines (102 loc) · 3.57 KB
/
totp.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
package walletclient
import (
"encoding/base32"
"encoding/hex"
"time"
bip32 "github.com/bitcoin-sv/go-sdk/compat/bip32"
ec "github.com/bitcoin-sv/go-sdk/primitives/ec"
"github.com/bitcoin-sv/spv-wallet-go-client/utils"
"github.com/bitcoin-sv/spv-wallet/models"
"github.com/pquerna/otp"
"github.com/pquerna/otp/totp"
)
const (
// TotpDefaultPeriod - Default number of seconds a TOTP is valid for.
TotpDefaultPeriod uint = 30
// TotpDefaultDigits - Default TOTP length
TotpDefaultDigits uint = 2
)
/*
Basic flow:
Alice generates passcodeForBob with (sharedSecret+(contact.Paymail as bobPaymail))
Alice sends passcodeForBob to Bob (e.g. via email)
Bob validates passcodeForBob with (sharedSecret+(requesterPaymail as bobPaymail))
The (sharedSecret+paymail) is a "directedSecret". This ensures that passcodeForBob-from-Alice != passcodeForAlice-from-Bob.
The flow looks the same for Bob generating passcodeForAlice.
*/
// GenerateTotpForContact creates one time-based one-time password based on secret shared between the user and the contact
func (b *WalletClient) GenerateTotpForContact(contact *models.Contact, period, digits uint) (string, error) {
sharedSecret, err := makeSharedSecret(b, contact)
if err != nil {
return "", err
}
opts := getTotpOpts(period, digits)
return totp.GenerateCodeCustom(directedSecret(sharedSecret, contact.Paymail), time.Now(), *opts)
}
// ValidateTotpForContact validates one time-based one-time password based on secret shared between the user and the contact
func (b *WalletClient) ValidateTotpForContact(contact *models.Contact, passcode, requesterPaymail string, period, digits uint) (bool, error) {
sharedSecret, err := makeSharedSecret(b, contact)
if err != nil {
return false, err
}
opts := getTotpOpts(period, digits)
return totp.ValidateCustom(passcode, directedSecret(sharedSecret, requesterPaymail), time.Now(), *opts)
}
func makeSharedSecret(b *WalletClient, c *models.Contact) ([]byte, error) {
privKey, pubKey, err := getSharedSecretFactors(b, c)
if err != nil {
return nil, err
}
x, _ := ec.S256().ScalarMult(pubKey.X, pubKey.Y, privKey.D.Bytes())
return x.Bytes(), nil
}
func getTotpOpts(period, digits uint) *totp.ValidateOpts {
if period == 0 {
period = TotpDefaultPeriod
}
if digits == 0 {
digits = TotpDefaultDigits
}
return &totp.ValidateOpts{
Period: period,
Digits: otp.Digits(digits),
}
}
func getSharedSecretFactors(b *WalletClient, c *models.Contact) (*ec.PrivateKey, *ec.PublicKey, error) {
if b.xPriv == nil {
return nil, nil, ErrMissingXpriv
}
xpriv, err := deriveXprivForPki(b.xPriv)
if err != nil {
return nil, nil, err
}
privKey, err := xpriv.ECPrivKey()
if err != nil {
return nil, nil, err
}
pubKey, err := convertPubKey(c.PubKey)
if err != nil {
return nil, nil, ErrContactPubKeyInvalid
}
return privKey, pubKey, nil
}
func deriveXprivForPki(xpriv *bip32.ExtendedKey) (*bip32.ExtendedKey, error) {
// PKI derivation path: m/0/0/0
// NOTICE: we currently do not support PKI rotation; however, adjustments will be made if and when we decide to implement it
pkiXpriv, err := bip32.GetHDKeyByPath(xpriv, utils.ChainExternal, 0)
if err != nil {
return nil, err
}
return pkiXpriv.Child(0)
}
func convertPubKey(pubKey string) (*ec.PublicKey, error) {
hex, err := hex.DecodeString(pubKey)
if err != nil {
return nil, err
}
return ec.ParsePubKey(hex)
}
// directedSecret appends a paymail to the secret and encodes it into base32 string
func directedSecret(sharedSecret []byte, paymail string) string {
return base32.StdEncoding.EncodeToString(append(sharedSecret, []byte(paymail)...))
}