diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-11 22:43:43 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-11 22:43:43 +0800 |
commit | 0329e058231cd92e052ca7bb425ec28dd542aaee (patch) | |
tree | 48da8cd9ed6eb169df988fcfb6c2773ea410c955 /xeth | |
parent | 5176fbc6faaa5e7f0305ad7f2b896c092781deaa (diff) | |
parent | 51d4566cbf5c91e429313f1765d5a7d2afc13634 (diff) | |
download | dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar.gz dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar.bz2 dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar.lz dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar.xz dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.tar.zst dexon-0329e058231cd92e052ca7bb425ec28dd542aaee.zip |
Merge pull request #914 from ethersphere/develop
Signature on arbitrary data using the private keys of an account
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 43 |
1 files changed, 32 insertions, 11 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index b875fa6f1..47b833a34 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -815,6 +815,35 @@ func (self *XEth) ConfirmTransaction(tx string) bool { return self.frontend.ConfirmTransaction(tx) } +func (self *XEth) doSign(from common.Address, hash common.Hash, didUnlock bool) ([]byte, error) { + sig, err := self.backend.AccountManager().Sign(accounts.Account{Address: from.Bytes()}, hash.Bytes()) + if err == accounts.ErrLocked { + if didUnlock { + return nil, fmt.Errorf("signer account still locked after successful unlock") + } + if !self.frontend.UnlockAccount(from.Bytes()) { + return nil, fmt.Errorf("could not unlock signer account") + } + // retry signing, the account should now be unlocked. + return self.doSign(from, hash, true) + } else if err != nil { + return nil, err + } + return sig, nil +} + +func (self *XEth) Sign(fromStr, hashStr string, didUnlock bool) (string, error) { + var ( + from = common.HexToAddress(fromStr) + hash = common.HexToHash(hashStr) + ) + sig, err := self.doSign(from, hash, didUnlock) + if err != nil { + return "", err + } + return common.ToHex(sig), nil +} + func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) { // this minimalistic recoding is enough (works for natspec.js) @@ -907,17 +936,9 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS } func (self *XEth) sign(tx *types.Transaction, from common.Address, didUnlock bool) error { - sig, err := self.backend.AccountManager().Sign(accounts.Account{Address: from.Bytes()}, tx.Hash().Bytes()) - if err == accounts.ErrLocked { - if didUnlock { - return fmt.Errorf("sender account still locked after successful unlock") - } - if !self.frontend.UnlockAccount(from.Bytes()) { - return fmt.Errorf("could not unlock sender account") - } - // retry signing, the account should now be unlocked. - return self.sign(tx, from, true) - } else if err != nil { + hash := tx.Hash() + sig, err := self.doSign(from, hash, didUnlock) + if err != nil { return err } tx.SetSignatureValues(sig) |