From 19cb6012004325353a1ad9509ce0d2c07dfa2702 Mon Sep 17 00:00:00 2001 From: gagliardetto Date: Thu, 14 Nov 2024 12:59:43 +0100 Subject: [PATCH] Cleanup --- keys.go | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/keys.go b/keys.go index d4b79a23..306c4c98 100644 --- a/keys.go +++ b/keys.go @@ -25,8 +25,8 @@ import ( "crypto/sha256" "errors" "fmt" - "io/ioutil" "math" + "os" "sort" "filippo.io/edwards25519" @@ -75,27 +75,34 @@ func ValidatePrivateKey(b []byte) (bool, error) { // check if the public key is on the ed25519 curve pub := ed25519.PrivateKey(b).Public().(ed25519.PublicKey) if !IsOnCurve(pub) { - return false, errors.New("the corresponding public key is not on the ed25519 curve") + return false, errors.New("the corresponding public key is NOT on the ed25519 curve") } return true, nil } func PrivateKeyFromSolanaKeygenFile(file string) (PrivateKey, error) { - content, err := ioutil.ReadFile(file) + content, err := os.ReadFile(file) if err != nil { return nil, fmt.Errorf("read keygen file: %w", err) } + return PrivateKeyFromSolanaKeygenFileBytes(content) +} - var privateKeyBytes []byte - err = json.Unmarshal(content, &privateKeyBytes) +func PrivateKeyFromSolanaKeygenFileBytes(content []byte) (PrivateKey, error) { + var values []byte + err := json.Unmarshal(content, &values) if err != nil { return nil, fmt.Errorf("decode keygen file: %w", err) } - - if _, err := ValidatePrivateKey(privateKeyBytes); err != nil { + // check private key length, should be 64 bytes (TODO: are private keys always 64 bytes?) + if len(values) != 64 { + return nil, fmt.Errorf("invalid private key length %d", len(values)) + } + prk := PrivateKey([]byte(values)) + if _, err := ValidatePrivateKey(prk); err != nil { return nil, fmt.Errorf("invalid private key: %w", err) } - return PrivateKey(privateKeyBytes), nil + return prk, nil } func (k PrivateKey) String() string { @@ -726,7 +733,7 @@ func GetAssociatedAuthority(programID PublicKey, marketAddr PublicKey) (PublicKe bumpSeed := uint8(0) endSeed := []byte{0, 0, 0, 0, 0, 0, 0} for bumpSeed < 100 { - address, err = CreateProgramAddress([][]byte{marketAddr[:], []byte{byte(bumpSeed)}, endSeed}, programID) + address, err = CreateProgramAddress([][]byte{marketAddr[:], {byte(bumpSeed)}, endSeed}, programID) if err == nil { return address, bumpSeed, nil }