OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / tendermint / go-crypto / crypto.go
1 package crypto
2
3 // Types of implementations
4 const (
5         TypeEd25519   = byte(0x01)
6         TypeSecp256k1 = byte(0x02)
7         NameEd25519   = "ed25519"
8         NameSecp256k1 = "secp256k1"
9 )