Module iota::ed25519
Function ed25519_verify
@param signature: 64-byte Ed25519 signature associated with the Ed25519 elliptic curve. @param public_key: 32-byte public key that represents a point on the Ed25519 elliptic curve. @param msg: The message that we test the signature against.
If the signature is a valid Ed25519 signature of the message and public key, return true. Otherwise, return false.
public fun ed25519_verify(signature: &vector, public_key: &vector, msg: &vector): bool
Implementation
public native fun ed25519_verify(
signature: &vector,
public_key: &vector,
msg: &vector,
): bool;