Skip to content

ed25519Verifier

const ed25519Verifier: RawEd25519Verifier = nobleEd25519Verifier

Defined in: packages/crypto/src/ed25519.ts:35

Verifies an ed25519 signature using the default ed25519 implementation (currently @noble/ed25519). The implementation may change in the future. To explicitly use the @noble/ed25519 implementation, use nobleEd25519Verifier.

The original message that was signed.

The ed25519 signature to verify.

A promise that resolves to true if the signature is valid, false otherwise.