mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 23:02:16 +00:00
10 lines
166 B
Go
10 lines
166 B
Go
package crypto
|
|
|
|
// Types of implementations
|
|
const (
|
|
TypeEd25519 = byte(0x01)
|
|
TypeSecp256k1 = byte(0x02)
|
|
NameEd25519 = "ed25519"
|
|
NameSecp256k1 = "secp256k1"
|
|
)
|