signhash (4.2.2 RPC)
blockchain
control
evo
evowallet
generating
governance
governancewallet
masternode
mining
network
rawtransactions
syscoin
syscoinwallet
util
wallet
zmq
signhash "address" "hash"
Sign a hash with the private key of an address
Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
Arguments:
1. address (string, required) The syscoin address to use for the private key.
2. hash (string, required) The hash to create a signature of.
Result:
"str" (string) The signature of the message encoded in base 64
Examples:
Unlock the wallet for 30 seconds
> syscoin-cli walletpassphrase "mypassphrase" 30
Create the signature
> syscoin-cli signhash "1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX" "hash"
As a JSON-RPC call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "signhash", "params": ["1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XX", "hash"]}' -H 'content-type: text/plain;' http://127.0.0.1:8370/