github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/stdlibs/crypto/ed25519/ed25519.gno (about)

     1  package ed25519
     2  
     3  // Verify returns true if the signature is valid for the message and public key.
     4  func Verify(publicKey []byte, message []byte, signature []byte) bool {
     5  	return verify(publicKey, message, signature)
     6  }
     7  
     8  func verify(publicKey []byte, message []byte, signature []byte) bool // injected