Verify credential
Verifying a verifiable credential ensures that the data it contains is authentic and has not been tampered with. The verification process checks the cryptographic proof attached to the credential, validating its issuer and claims.
Prerequisites
Example: Verify credential
To verify a credential, use the verify
method:
- TypeScript
- Java
const verificationResult = await credential.verify();
var verificationResult = credential.verify();