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.

9 lines
166 B

  1. package crypto
  2. // Types of implementations
  3. const (
  4. TypeEd25519 = byte(0x01)
  5. TypeSecp256k1 = byte(0x02)
  6. NameEd25519 = "ed25519"
  7. NameSecp256k1 = "secp256k1"
  8. )