2019-07-22 09:17:27 +00:00
|
|
|
// Copyright 2019 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-07-22 09:17:27 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
|
|
|
|
package external
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
|
|
"github.com/ethereum/go-ethereum/signer/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ExternalBackend struct {
|
|
|
|
signers []accounts.Wallet
|
|
|
|
}
|
|
|
|
|
|
|
|
func (eb *ExternalBackend) Wallets() []accounts.Wallet {
|
|
|
|
return eb.signers
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewExternalBackend(endpoint string) (*ExternalBackend, error) {
|
|
|
|
signer, err := NewExternalSigner(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &ExternalBackend{
|
|
|
|
signers: []accounts.Wallet{signer},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (eb *ExternalBackend) Subscribe(sink chan<- accounts.WalletEvent) event.Subscription {
|
|
|
|
return event.NewSubscription(func(quit <-chan struct{}) error {
|
|
|
|
<-quit
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExternalSigner provides an API to interact with an external signer (clef)
|
|
|
|
// It proxies request to the external signer while forwarding relevant
|
|
|
|
// request headers
|
|
|
|
type ExternalSigner struct {
|
|
|
|
client *rpc.Client
|
|
|
|
endpoint string
|
|
|
|
status string
|
|
|
|
cacheMu sync.RWMutex
|
|
|
|
cache []accounts.Account
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewExternalSigner(endpoint string) (*ExternalSigner, error) {
|
|
|
|
client, err := rpc.Dial(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
extsigner := &ExternalSigner{
|
|
|
|
client: client,
|
|
|
|
endpoint: endpoint,
|
|
|
|
}
|
|
|
|
// Check if reachable
|
|
|
|
version, err := extsigner.pingVersion()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
extsigner.status = fmt.Sprintf("ok [version=%v]", version)
|
|
|
|
return extsigner, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) URL() accounts.URL {
|
|
|
|
return accounts.URL{
|
|
|
|
Scheme: "extapi",
|
|
|
|
Path: api.endpoint,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Status() (string, error) {
|
|
|
|
return api.status, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Open(passphrase string) error {
|
|
|
|
return fmt.Errorf("operation not supported on external signers")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Close() error {
|
|
|
|
return fmt.Errorf("operation not supported on external signers")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Accounts() []accounts.Account {
|
|
|
|
var accnts []accounts.Account
|
|
|
|
res, err := api.listAccounts()
|
|
|
|
if err != nil {
|
|
|
|
log.Error("account listing failed", "error", err)
|
|
|
|
return accnts
|
|
|
|
}
|
|
|
|
for _, addr := range res {
|
|
|
|
accnts = append(accnts, accounts.Account{
|
|
|
|
URL: accounts.URL{
|
|
|
|
Scheme: "extapi",
|
|
|
|
Path: api.endpoint,
|
|
|
|
},
|
|
|
|
Address: addr,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
api.cacheMu.Lock()
|
|
|
|
api.cache = accnts
|
|
|
|
api.cacheMu.Unlock()
|
|
|
|
return accnts
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Contains(account accounts.Account) bool {
|
|
|
|
api.cacheMu.RLock()
|
|
|
|
defer api.cacheMu.RUnlock()
|
2020-04-30 16:57:06 +00:00
|
|
|
if api.cache == nil {
|
|
|
|
// If we haven't already fetched the accounts, it's time to do so now
|
|
|
|
api.cacheMu.RUnlock()
|
|
|
|
api.Accounts()
|
|
|
|
api.cacheMu.RLock()
|
|
|
|
}
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
for _, a := range api.cache {
|
|
|
|
if a.Address == account.Address && (account.URL == (accounts.URL{}) || account.URL == api.URL()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) Derive(path accounts.DerivationPath, pin bool) (accounts.Account, error) {
|
|
|
|
return accounts.Account{}, fmt.Errorf("operation not supported on external signers")
|
|
|
|
}
|
|
|
|
|
2019-04-10 10:09:08 +00:00
|
|
|
func (api *ExternalSigner) SelfDerive(bases []accounts.DerivationPath, chain ethereum.ChainStateReader) {
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
log.Error("operation SelfDerive not supported on external signers")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) signHash(account accounts.Account, hash []byte) ([]byte, error) {
|
|
|
|
return []byte{}, fmt.Errorf("operation not supported on external signers")
|
|
|
|
}
|
|
|
|
|
|
|
|
// SignData signs keccak256(data). The mimetype parameter describes the type of data being signed
|
|
|
|
func (api *ExternalSigner) SignData(account accounts.Account, mimeType string, data []byte) ([]byte, error) {
|
2019-02-12 13:00:02 +00:00
|
|
|
var res hexutil.Bytes
|
|
|
|
var signAddress = common.NewMixedcaseAddress(account.Address)
|
|
|
|
if err := api.client.Call(&res, "account_signData",
|
|
|
|
mimeType,
|
|
|
|
&signAddress, // Need to use the pointer here, because of how MarshalJSON is defined
|
|
|
|
hexutil.Encode(data)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-25 08:21:28 +00:00
|
|
|
// If V is on 27/28-form, convert to 0/1 for Clique
|
2019-02-12 13:00:02 +00:00
|
|
|
if mimeType == accounts.MimetypeClique && (res[64] == 27 || res[64] == 28) {
|
|
|
|
res[64] -= 27 // Transform V from 27/28 to 0/1 for Clique use
|
|
|
|
}
|
|
|
|
return res, nil
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) SignText(account accounts.Account, text []byte) ([]byte, error) {
|
2020-05-01 11:52:41 +00:00
|
|
|
var signature hexutil.Bytes
|
2019-02-12 13:00:02 +00:00
|
|
|
var signAddress = common.NewMixedcaseAddress(account.Address)
|
2020-05-01 11:52:41 +00:00
|
|
|
if err := api.client.Call(&signature, "account_signData",
|
2019-02-12 13:00:02 +00:00
|
|
|
accounts.MimetypeTextPlain,
|
|
|
|
&signAddress, // Need to use the pointer here, because of how MarshalJSON is defined
|
|
|
|
hexutil.Encode(text)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-01 11:52:41 +00:00
|
|
|
if signature[64] == 27 || signature[64] == 28 {
|
|
|
|
// If clef is used as a backend, it may already have transformed
|
|
|
|
// the signature to ethereum-type signature.
|
|
|
|
signature[64] -= 27 // Transform V from Ethereum-legacy to 0/1
|
|
|
|
}
|
|
|
|
return signature, nil
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
}
|
|
|
|
|
2020-07-10 09:33:31 +00:00
|
|
|
// signTransactionResult represents the signinig result returned by clef.
|
|
|
|
type signTransactionResult struct {
|
|
|
|
Raw hexutil.Bytes `json:"raw"`
|
|
|
|
Tx *types.Transaction `json:"tx"`
|
|
|
|
}
|
|
|
|
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
func (api *ExternalSigner) SignTx(account accounts.Account, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error) {
|
|
|
|
data := hexutil.Bytes(tx.Data())
|
2019-07-03 19:54:59 +00:00
|
|
|
var to *common.MixedcaseAddress
|
|
|
|
if tx.To() != nil {
|
|
|
|
t := common.NewMixedcaseAddress(*tx.To())
|
|
|
|
to = &t
|
|
|
|
}
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
args := &core.SendTxArgs{
|
|
|
|
Data: &data,
|
|
|
|
Nonce: hexutil.Uint64(tx.Nonce()),
|
|
|
|
Value: hexutil.Big(*tx.Value()),
|
|
|
|
Gas: hexutil.Uint64(tx.Gas()),
|
|
|
|
GasPrice: hexutil.Big(*tx.GasPrice()),
|
2019-07-03 19:54:59 +00:00
|
|
|
To: to,
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
From: common.NewMixedcaseAddress(account.Address),
|
|
|
|
}
|
2020-07-10 09:33:31 +00:00
|
|
|
var res signTransactionResult
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
if err := api.client.Call(&res, "account_signTransaction", args); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return res.Tx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) SignTextWithPassphrase(account accounts.Account, passphrase string, text []byte) ([]byte, error) {
|
2019-08-12 09:00:38 +00:00
|
|
|
return []byte{}, fmt.Errorf("password-operations not supported on external signers")
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) SignTxWithPassphrase(account accounts.Account, passphrase string, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error) {
|
2019-08-12 09:00:38 +00:00
|
|
|
return nil, fmt.Errorf("password-operations not supported on external signers")
|
signer, clef: implement EIP191/712 (#17789)
* Named functions and defined a basic EIP191 content type list
* Written basic content type functions
* Added ecRecover method in the clef api
* Updated the extapi changelog and addded indications in the README
* Changed the version of the external API
* Added tests for 0x45
* Implementing UnmarshalJSON() for TypedData
* Working on TypedData
* Solved the auditlog issue
* Changed method to signTypedData
* Changed mimes and implemented the 'encodeType' function for EIP-712
* Polished docstrings, ran goimports and swapped fmt.Errorf with errors.New where possible
* Drafted recursive encodeData
* Ran goimports and gofmt
* Drafted first version of EIP-712, including tests
* Temporarily switched to using common.Address in tests
* Drafted text/validator and and rewritten []byte as hexutil.Bytes
* Solved stringified address encoding issue
* Changed the property type required by signData from bytes to interface{}
* Fixed bugs in 'data/typed' signs
* Brought legal warning back after temporarily disabling it for development
* Added example RPC calls for account_signData and account_signTypedData
* Named functions and defined a basic EIP191 content type list
* Written basic content type functions
* Added ecRecover method in the clef api
* Updated the extapi changelog and addded indications in the README
* Added tests for 0x45
* Implementing UnmarshalJSON() for TypedData
* Working on TypedData
* Solved the auditlog issue
* Changed method to signTypedData
* Changed mimes and implemented the 'encodeType' function for EIP-712
* Polished docstrings, ran goimports and swapped fmt.Errorf with errors.New where possible
* Drafted recursive encodeData
* Ran goimports and gofmt
* Drafted first version of EIP-712, including tests
* Temporarily switched to using common.Address in tests
* Drafted text/validator and and rewritten []byte as hexutil.Bytes
* Solved stringified address encoding issue
* Changed the property type required by signData from bytes to interface{}
* Fixed bugs in 'data/typed' signs
* Brought legal warning back after temporarily disabling it for development
* Added example RPC calls for account_signData and account_signTypedData
* Polished and fixed PR
* Polished and fixed PR
* Solved malformed data panics and also wrote tests
* Solved malformed data panics and also wrote tests
* Added alphabetical sorting to type dependencies
* Added alphabetical sorting to type dependencies
* Added pretty print to data/typed UI
* Added pretty print to data/typed UI
* signer: more tests for typed data
* signer: more tests for typed data
* Fixed TestMalformedData4 errors and renamed IsValid to Validate
* Fixed TestMalformedData4 errors and renamed IsValid to Validate
* Fixed more new failing tests and deanonymised some functions
* Fixed more new failing tests and deanonymised some functions
* Added types to EIP712 output in cliui
* Added types to EIP712 output in cliui
* Fixed regexp issues
* Fixed regexp issues
* Added pseudo-failing test
* Added pseudo-failing test
* Fixed false positive test
* Fixed false positive test
* Added PrettyPrint method
* Added PrettyPrint method
* signer: refactor formatting and UI
* signer: make ui use new message format for signing
* Fixed breaking changes
* Fixed rules_test failing test
* Added extra regexp for reference types
* signer: more hard types
* Fixed failing test, formatted files
* signer: use golang/x keccak
* Fixed goimports error
* clef, signer: address some review concerns
* Implemented latest recommendations
* Fixed comments and uintint256 issue
* accounts, signer: fix mimetypes, add interface to sign data with passphrase
* signer, accounts: remove duplicated code, pass hash preimages to signing
* signer: prevent panic in type assertions, make cliui print rawdata as quotable-safe
* signer: linter fixes, remove deprecated crypto dependency
* accounts: fix goimport
2019-02-06 07:30:49 +00:00
|
|
|
}
|
|
|
|
func (api *ExternalSigner) SignDataWithPassphrase(account accounts.Account, passphrase, mimeType string, data []byte) ([]byte, error) {
|
2019-08-12 09:00:38 +00:00
|
|
|
return nil, fmt.Errorf("password-operations not supported on external signers")
|
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 10:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) listAccounts() ([]common.Address, error) {
|
|
|
|
var res []common.Address
|
|
|
|
if err := api.client.Call(&res, "account_list"); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (api *ExternalSigner) pingVersion() (string, error) {
|
|
|
|
var v string
|
|
|
|
if err := api.client.Call(&v, "account_version"); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|