keccak256
Compute the keccak256 hash of input data, a cryptographic function essential for Ethereum blockchain operations like address generation and smart contract interactions.
Instructions
calculate keccak256 hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | data to hash |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"description": "data to hash",
"type": "string"
}
},
"required": [
"data"
],
"type": "object"
}