You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package crypto
|
|
|
|
// Types of implementations
|
|
const (
|
|
TypeEd25519 = byte(0x01)
|
|
TypeSecp256k1 = byte(0x02)
|
|
NameEd25519 = "ed25519"
|
|
NameSecp256k1 = "secp256k1"
|
|
)
|