|
|
- package keys
-
- import (
- "sort"
-
- crypto "github.com/tendermint/go-crypto"
- data "github.com/tendermint/go-wire/data"
- )
-
- // Info is the public information about a key
- type Info struct {
- Name string `json:"name"`
- Address data.Bytes `json:"address"`
- PubKey crypto.PubKey `json:"pubkey"`
- }
-
- func (i *Info) Format() Info {
- if !i.PubKey.Empty() {
- i.Address = i.PubKey.Address()
- }
- return *i
- }
-
- // Infos is a wrapper to allows alphabetical sorting of the keys
- type Infos []Info
-
- func (k Infos) Len() int { return len(k) }
- func (k Infos) Less(i, j int) bool { return k[i].Name < k[j].Name }
- func (k Infos) Swap(i, j int) { k[i], k[j] = k[j], k[i] }
- func (k Infos) Sort() {
- if k != nil {
- sort.Sort(k)
- }
- }
-
- // Signable represents any transaction we wish to send to tendermint core
- // These methods allow us to sign arbitrary Tx with the KeyStore
- type Signable interface {
- // SignBytes is the immutable data, which needs to be signed
- SignBytes() []byte
-
- // Sign will add a signature and pubkey.
- //
- // Depending on the Signable, one may be able to call this multiple times for multisig
- // Returns error if called with invalid data or too many times
- Sign(pubkey crypto.PubKey, sig crypto.Signature) error
-
- // Signers will return the public key(s) that signed if the signature
- // is valid, or an error if there is any issue with the signature,
- // including if there are no signatures
- Signers() ([]crypto.PubKey, error)
-
- // TxBytes returns the transaction data as well as all signatures
- // It should return an error if Sign was never called
- TxBytes() ([]byte, error)
- }
-
- // Signer allows one to use a keystore to sign transactions
- type Signer interface {
- Sign(name, passphrase string, tx Signable) error
- }
-
- // Manager allows simple CRUD on a keystore, as an aid to signing
- type Manager interface {
- Signer
- Create(name, passphrase, algo string) (Info, error)
- List() (Infos, error)
- Get(name string) (Info, error)
- Update(name, oldpass, newpass string) error
- Delete(name, passphrase string) error
- }
|