Skip to content
Snippets Groups Projects
key_client.go 2.54 KiB
Newer Older
// Copyright 2015, 2016 Eris Industries (UK) Ltd.
// This file is part of Eris-RT

// Eris-RT is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Eris-RT is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Eris-RT.  If not, see <http://www.gnu.org/licenses/>.

package keys

import (
	"encoding/hex"
)

type KeyClient interface{
	// Sign needs to return the signature bytes for given message to sign
	// and the address to sign it with.
	Sign(signBytes []byte, signAddress []byte) (signature []byte, err error)
	// PublicKey needs to return the public key associated with a given address
	PublicKey(address []byte) (publicKey []byte, err error)
}

// NOTE [ben] Compiler check to ensure ErisKeyClient successfully implements
// eris-db/keys.KeyClient
var _ KeyClient = (*ErisKeyClient)(nil)

	rpcString string
}

// ErisKeyClient.New returns a new eris-keys client for provided rpc location
// Eris-keys connects over http request-responses
func NewErisKeyClient(rpcString string) *ErisKeyClient{
		rpcString: rpcString,
	}
}

// Eris-keys client Sign requests the signature from ErisKeysClient over rpc for the given
// bytes to be signed and the address to sign them with.
func (erisKeys *ErisKeyClient) Sign(signBytes []byte, signAddress []byte) (signature []byte, err error) {
		"msg":  string(signBytes),
		"hash": string(signBytes), // TODO:[ben] backwards compatibility
		"addr": string(signAddress),
	}
	sigS, err := RequestResponse(erisKeys.rpcString, "sign", args)
	if err != nil {
		return
	}
	sigBytes, err := hex.DecodeString(sigS)
	if err != nil {
		return
	}
	copy(signature[:], sigBytes)
	return
}

// Eris-keys client PublicKey requests the public key associated with an address from
// the eris-keys server.
func (erisKeys *ErisKeyClient) PublicKey(address []byte) (publicKey []byte, err error) {
	}
	pubS, err := RequestResponse(erisKeys.rpcString, "pub", args)
	if err != nil {
		return
	}
	// TODO: [ben] assert that received public key results in 
	// address
	return hex.DecodeString(pubS)