tendermint/types/signable.go

24 lines
709 B
Go
Raw Normal View History

2015-11-01 11:34:08 -08:00
package types
import (
"github.com/tendermint/tendermint/crypto/ed25519"
cmn "github.com/tendermint/tendermint/libs/common"
)
var (
// MaxSignatureSize is a maximum allowed signature size for the Proposal
// and Vote.
// XXX: secp256k1 does not have Size nor MaxSize defined.
MaxSignatureSize = cmn.MaxInt(ed25519.SignatureSize, 64)
)
2015-11-01 11:34:08 -08:00
// Signable is an interface for all signable things.
// It typically removes signatures before serializing.
// SignBytes returns the bytes to be signed
// NOTE: chainIDs are part of the SignBytes but not
// necessarily the object themselves.
// NOTE: Expected to panic if there is an error marshalling.
2015-11-01 11:34:08 -08:00
type Signable interface {
SignBytes(chainID string) []byte
2015-11-01 11:34:08 -08:00
}