compareHashes
Compare two hashes in constant time to ensure secure and consistent verification without timing vulnerabilities. Ideal for cryptographic and data integrity checks.
Instructions
Compare two hashes in constant time
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hash1 | Yes | First hash to compare | |
| hash2 | Yes | Second hash to compare |
Input Schema (JSON Schema)
{
"properties": {
"hash1": {
"description": "First hash to compare",
"type": "string"
},
"hash2": {
"description": "Second hash to compare",
"type": "string"
}
},
"required": [
"hash1",
"hash2"
],
"type": "object"
}