mirror of
https://github.com/aljazceru/ark.git
synced 2026-02-03 02:24:40 +01:00
207 lines
3.7 KiB
Go
207 lines
3.7 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"syscall"
|
|
|
|
"github.com/ark-network/ark/common"
|
|
"github.com/decred/dcrd/dcrec/secp256k1/v4"
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
func hashPassword(password []byte) []byte {
|
|
hash := sha256.Sum256(password)
|
|
return hash[:]
|
|
}
|
|
|
|
func verifyPassword(password []byte) error {
|
|
state, err := getState()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
passwordHashString, ok := state["password_hash"]
|
|
if !ok {
|
|
return fmt.Errorf("password hash not found")
|
|
}
|
|
|
|
passwordHash, err := hex.DecodeString(passwordHashString)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
currentPassHash := hashPassword(password)
|
|
|
|
if !bytes.Equal(passwordHash, currentPassHash) {
|
|
return fmt.Errorf("invalid password")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func readPassword() ([]byte, error) {
|
|
fmt.Print("password: ")
|
|
passwordInput, err := term.ReadPassword(int(syscall.Stdin))
|
|
fmt.Println() // new line
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = verifyPassword(passwordInput)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return passwordInput, nil
|
|
}
|
|
|
|
func privateKeyFromPassword() (*secp256k1.PrivateKey, error) {
|
|
state, err := getState()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
encryptedPrivateKeyString, ok := state["encrypted_private_key"]
|
|
if !ok {
|
|
return nil, fmt.Errorf("encrypted private key not found")
|
|
}
|
|
|
|
encryptedPrivateKey, err := hex.DecodeString(encryptedPrivateKeyString)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
password, err := readPassword()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
cypher := NewAES128Cypher()
|
|
privateKeyBytes, err := cypher.Decrypt(encryptedPrivateKey, password)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
privateKey := secp256k1.PrivKeyFromBytes(privateKeyBytes)
|
|
return privateKey, nil
|
|
}
|
|
|
|
func getWalletPublicKey() (*secp256k1.PublicKey, error) {
|
|
state, err := getState()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
publicKeyString, ok := state["public_key"]
|
|
if !ok {
|
|
return nil, fmt.Errorf("public key not found")
|
|
}
|
|
|
|
_, publicKey, err := common.DecodePubKey(publicKeyString)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return publicKey, nil
|
|
}
|
|
|
|
func getServiceProviderPublicKey() (*secp256k1.PublicKey, error) {
|
|
state, err := getState()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
arkPubKey, ok := state["ark_pubkey"]
|
|
if !ok {
|
|
return nil, fmt.Errorf("ark public key not found")
|
|
}
|
|
|
|
_, pubKey, err := common.DecodePubKey(arkPubKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return pubKey, nil
|
|
}
|
|
|
|
func coinSelect(vtxos []vtxo, amount uint64) ([]vtxo, uint64, error) {
|
|
selected := make([]vtxo, 0)
|
|
selectedAmount := uint64(0)
|
|
|
|
for _, vtxo := range vtxos {
|
|
if selectedAmount >= amount {
|
|
break
|
|
}
|
|
|
|
selected = append(selected, vtxo)
|
|
selectedAmount += vtxo.amount
|
|
}
|
|
|
|
if selectedAmount < amount {
|
|
return nil, 0, fmt.Errorf("insufficient balance: %d to cover %d", selectedAmount, amount)
|
|
}
|
|
|
|
change := selectedAmount - amount
|
|
|
|
return selected, change, nil
|
|
}
|
|
|
|
func computeBalance(vtxos []vtxo) uint64 {
|
|
var balance uint64
|
|
for _, vtxo := range vtxos {
|
|
balance += vtxo.amount
|
|
}
|
|
return balance
|
|
}
|
|
|
|
func getNetwork() common.Network {
|
|
state, err := getState()
|
|
if err != nil {
|
|
return common.MainNet
|
|
}
|
|
|
|
network, ok := state["network"]
|
|
if !ok {
|
|
return common.MainNet
|
|
}
|
|
if network == "testnet" {
|
|
return common.TestNet
|
|
}
|
|
return common.MainNet
|
|
}
|
|
|
|
func getAddress() (string, error) {
|
|
publicKey, err := getWalletPublicKey()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
aspPublicKey, err := getServiceProviderPublicKey()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
net := getNetwork()
|
|
|
|
addr, err := common.EncodeAddress(net.Addr, publicKey, aspPublicKey)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return addr, nil
|
|
}
|
|
|
|
func printJSON(resp interface{}) error {
|
|
jsonBytes, err := json.MarshalIndent(resp, "", "\t")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(string(jsonBytes))
|
|
return nil
|
|
}
|