tendermint/crypto.go

10 lines
166 B
Go
Raw Normal View History

2017-04-09 00:32:54 -07:00
package crypto
// Types of implementations
const (
TypeEd25519 = byte(0x01)
TypeSecp256k1 = byte(0x02)
NameEd25519 = "ed25519"
NameSecp256k1 = "secp256k1"
)