...

Source file src/github.com/cloudflare/circl/sign/ed25519/pubkey.go

Documentation: github.com/cloudflare/circl/sign/ed25519

     1  //go:build go1.13
     2  // +build go1.13
     3  
     4  package ed25519
     5  
     6  import cryptoEd25519 "crypto/ed25519"
     7  
     8  // PublicKey is the type of Ed25519 public keys.
     9  type PublicKey cryptoEd25519.PublicKey
    10  

View as plain text